From cd458d4b85b0f52f71015f9cd13993df138f7d1b Mon Sep 17 00:00:00 2001 From: Ernad Husremovic Date: Fri, 29 Aug 2025 15:20:51 +0200 Subject: [PATCH] Initial commit: Web packages --- README.md | 10 + odoo-bringout-oca-ocb-web_editor/README.md | 49 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 17 + .../doc/DEPENDENCIES.md | 6 + odoo-bringout-oca-ocb-web_editor/doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 50 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 34 + .../doc/TROUBLESHOOTING.md | 5 + odoo-bringout-oca-ocb-web_editor/doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 43 + .../web_editor/__init__.py | 5 + .../web_editor/__manifest__.py | 180 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 260 bytes .../__pycache__/tools.cpython-312.pyc | Bin 0 -> 6527 bytes .../web_editor/controllers/__init__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 235 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 43937 bytes .../web_editor/controllers/main.py | 868 + .../web_editor/data/editor_assets.xml | 11 + .../web_editor/i18n/af.po | 3392 ++ .../web_editor/i18n/am.po | 3388 ++ .../web_editor/i18n/ar.po | 3450 ++ .../web_editor/i18n/az.po | 3437 ++ .../web_editor/i18n/be.po | 3420 ++ .../web_editor/i18n/bg.po | 3437 ++ .../web_editor/i18n/bs.po | 3416 ++ .../web_editor/i18n/ca.po | 3478 ++ .../web_editor/i18n/cs.po | 3461 ++ .../web_editor/i18n/da.po | 3450 ++ .../web_editor/i18n/de.po | 3473 ++ .../web_editor/i18n/el.po | 1768 + .../web_editor/i18n/en_AU.po | 1511 + .../web_editor/i18n/en_GB.po | 1531 + .../web_editor/i18n/es.po | 3465 ++ .../web_editor/i18n/es_CL.po | 1511 + .../web_editor/i18n/es_CO.po | 1565 + .../web_editor/i18n/es_CR.po | 1508 + .../web_editor/i18n/es_DO.po | 1515 + .../web_editor/i18n/es_EC.po | 1564 + .../web_editor/i18n/es_MX.po | 3466 ++ .../web_editor/i18n/es_PE.po | 1515 + .../web_editor/i18n/es_VE.po | 1511 + .../web_editor/i18n/et.po | 3443 ++ .../web_editor/i18n/fa.po | 3475 ++ .../web_editor/i18n/fi.po | 3463 ++ .../web_editor/i18n/fr.po | 3465 ++ .../web_editor/i18n/fr_CA.po | 1511 + .../web_editor/i18n/gl.po | 1510 + .../web_editor/i18n/gu.po | 3393 ++ .../web_editor/i18n/he.po | 3443 ++ .../web_editor/i18n/hi.po | 3424 ++ .../web_editor/i18n/hr.po | 3440 ++ .../web_editor/i18n/hu.po | 3458 ++ .../web_editor/i18n/hy.po | 3388 ++ .../web_editor/i18n/id.po | 3455 ++ .../web_editor/i18n/is.po | 3396 ++ .../web_editor/i18n/it.po | 3457 ++ .../web_editor/i18n/ja.po | 3427 ++ .../web_editor/i18n/ka.po | 1516 + .../web_editor/i18n/kab.po | 1513 + .../web_editor/i18n/km.po | 3426 ++ .../web_editor/i18n/ko.po | 3430 ++ .../web_editor/i18n/lb.po | 2019 + .../web_editor/i18n/lo.po | 3423 ++ .../web_editor/i18n/lt.po | 3444 ++ .../web_editor/i18n/lv.po | 3428 ++ .../web_editor/i18n/mk.po | 1527 + .../web_editor/i18n/ml.po | 3422 ++ .../web_editor/i18n/mn.po | 3429 ++ .../web_editor/i18n/ms.po | 3394 ++ .../web_editor/i18n/nb.po | 3435 ++ .../web_editor/i18n/nl.po | 3465 ++ .../web_editor/i18n/no.po | 3392 ++ .../web_editor/i18n/pl.po | 3478 ++ .../web_editor/i18n/pt.po | 3438 ++ .../web_editor/i18n/pt_BR.po | 3463 ++ .../web_editor/i18n/ro.po | 3460 ++ .../web_editor/i18n/ru.po | 3471 ++ .../web_editor/i18n/sk.po | 3446 ++ .../web_editor/i18n/sl.po | 3444 ++ .../web_editor/i18n/sq.po | 3388 ++ .../web_editor/i18n/sr.po | 3444 ++ .../web_editor/i18n/sr@latin.po | 1731 + .../web_editor/i18n/sv.po | 3470 ++ .../web_editor/i18n/sw.po | 3388 ++ .../web_editor/i18n/ta.po | 3388 ++ .../web_editor/i18n/th.po | 3447 ++ .../web_editor/i18n/tr.po | 3470 ++ .../web_editor/i18n/uk.po | 3460 ++ .../web_editor/i18n/vi.po | 3454 ++ .../web_editor/i18n/web_editor.pot | 3416 ++ .../web_editor/i18n/zh_CN.po | 3428 ++ .../web_editor/i18n/zh_TW.po | 3422 ++ .../web_editor/models/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 473 bytes .../models/__pycache__/assets.cpython-312.pyc | Bin 0 -> 9764 bytes .../__pycache__/ir_attachment.cpython-312.pyc | Bin 0 -> 4233 bytes .../__pycache__/ir_http.cpython-312.pyc | Bin 0 -> 1845 bytes .../ir_qweb_fields.cpython-312.pyc | Bin 0 -> 34146 bytes .../__pycache__/ir_ui_view.cpython-312.pyc | Bin 0 -> 28322 bytes .../__pycache__/ir_websocket.cpython-312.pyc | Bin 0 -> 2192 bytes .../models/__pycache__/models.cpython-312.pyc | Bin 0 -> 2120 bytes .../__pycache__/test_models.cpython-312.pyc | Bin 0 -> 2012 bytes .../web_editor/models/assets.py | 227 + .../web_editor/models/ir_attachment.py | 74 + .../web_editor/models/ir_http.py | 31 + .../web_editor/models/ir_qweb_fields.py | 665 + .../web_editor/models/ir_ui_view.py | 523 + .../web_editor/models/ir_websocket.py | 41 + .../web_editor/models/models.py | 28 + .../web_editor/models/test_models.py | 37 + .../web_editor/security/ir.model.access.csv | 3 + .../image_shapes/basic/bsc_organic_1.svg | 21 + .../image_shapes/basic/bsc_organic_2.svg | 23 + .../image_shapes/basic/bsc_organic_3.svg | 23 + .../image_shapes/basic/bsc_square_1.svg | 21 + .../image_shapes/basic/bsc_square_2.svg | 21 + .../image_shapes/basic/bsc_square_3.svg | 22 + .../image_shapes/basic/bsc_square_4.svg | 21 + .../image_shapes/basic/bsc_square_5.svg | 20 + .../image_shapes/basic/bsc_square_6.svg | 20 + .../basic/bsc_square_rounded_1.svg | 21 + .../basic/bsc_square_rounded_2.svg | 20 + .../image_shapes/convert-to-percentages.html | 17 + .../image_shapes/convert-to-percentages.js | 159 + .../image_shapes/devices/browser_01.svg | 22 + .../image_shapes/devices/browser_02.svg | 59 + .../image_shapes/devices/browser_03.svg | 52 + .../devices/galaxy_3d_landscape_01.svg | 178 + .../devices/galaxy_3d_landscape_02.svg | 207 + .../devices/galaxy_3d_portrait_01.svg | 98 + .../devices/galaxy_3d_portrait_02.svg | 130 + .../devices/galaxy_front_landscape.svg | 118 + .../devices/galaxy_front_portrait.svg | 118 + .../image_shapes/devices/imac_3d_01.svg | 78 + .../image_shapes/devices/imac_3d_02.svg | 78 + .../image_shapes/devices/imac_front.svg | 87 + .../devices/ipad_3d_landscape_01.svg | 294 + .../devices/ipad_3d_landscape_02.svg | 278 + .../devices/ipad_3d_portrait_01.svg | 281 + .../devices/ipad_3d_portrait_02.svg | 289 + .../devices/ipad_front_landscape.svg | 58 + .../devices/ipad_front_portrait.svg | 58 + .../devices/iphone_3d_landscape_01.svg | 173 + .../devices/iphone_3d_landscape_02.svg | 159 + .../devices/iphone_3d_portrait_01.svg | 186 + .../devices/iphone_3d_portrait_02.svg | 171 + .../devices/iphone_front_landscape.svg | 63 + .../devices/iphone_front_portrait.svg | 64 + .../image_shapes/devices/macbook_3d_01.svg | 178 + .../image_shapes/devices/macbook_3d_02.svg | 160 + .../image_shapes/devices/macbook_front.svg | 100 + .../image_shapes/float/flt_planets_1.svg | 106 + .../image_shapes/float/flt_planets_2.svg | 106 + .../image_shapes/float/flt_primary_1.svg | 49 + .../image_shapes/float/flt_primary_2.svg | 63 + .../image_shapes/float/flt_primary_3.svg | 40 + .../image_shapes/float/flt_square_1.svg | 61 + .../image_shapes/float/flt_square_2.svg | 50 + .../image_shapes/float/flt_square_3.svg | 57 + .../image_shapes/float/flt_square_4.svg | 69 + .../image_shapes/line/line_square_1.svg | 32 + .../static/image_shapes/line/line_star.svg | 45 + .../static/image_shapes/line/line_sun.svg | 69 + .../image_shapes/line/line_triangle.svg | 58 + .../image_shapes/line/little_lines_1.svg | 31 + .../image_shapes/line/little_lines_2.svg | 40 + .../image_shapes/line/little_lines_3.svg | 38 + .../image_shapes/line/organic_1_line.svg | 19 + .../static/image_shapes/line/oval_2_line.svg | 20 + .../image_shapes/line/oval_3_pattern_line.svg | 53 + .../pattern/organic_2_pattern_dot.svg | 662 + .../pattern/organic_3_pattern_cross.svg | 87 + .../pattern/organic_4_pattern_caps.svg | 168 + .../pattern/pattern_labyrinth.svg | 86 + .../image_shapes/pattern/pattern_points_1.svg | 38 + .../image_shapes/pattern/pattern_waves_1.svg | 31 + .../image_shapes/pattern/pattern_waves_2.svg | 42 + .../image_shapes/pattern/pattern_waves_3.svg | 42 + .../image_shapes/pattern/pattern_waves_4.svg | 65 + .../image_shapes/solid/blob_1_solid_rd.svg | 26 + .../image_shapes/solid/blob_2_solid_str.svg | 18 + .../image_shapes/solid/blob_3_solid_rd.svg | 20 + .../image_shapes/solid/oval_1_solid_rd.svg | 19 + .../static/image_shapes/solid/sld_blob_4.svg | 37 + .../image_shapes/solid/sld_blob_shadow_1.svg | 37 + .../image_shapes/solid/sld_blob_shadow_2.svg | 59 + .../image_shapes/solid/sld_square_1.svg | 20 + .../image_shapes/solid/sld_square_2.svg | 20 + .../solid/sld_square_organic_1.svg | 37 + .../image_shapes/special/spl_circuit_1.svg | 122 + .../image_shapes/special/spl_filter_1.svg | 35 + .../image_shapes/special/spl_flag_1.svg | 21 + .../image_shapes/special/spl_organics_1.svg | 20 + .../image_shapes/special/spl_rain_1.svg | 100 + .../image_shapes/special/spl_snow_1.svg | 316 + .../image_shapes/special/spl_speed_1.svg | 263 + .../web_editor/static/lib/DOMPurify.js | 1376 + .../web_editor/static/lib/cropperjs/LICENSE | 21 + .../static/lib/cropperjs/cropper.css | 304 + .../static/lib/cropperjs/cropper.js | 3576 ++ .../web_editor/static/lib/html2canvas.js | 7830 ++++ .../web_editor/static/lib/jQuery.transfo.js | 454 + .../static/lib/jquery-cropper/LICENSE | 21 + .../lib/jquery-cropper/jquery-cropper.js | 75 + .../lib/vkbeautify/vkbeautify.0.99.00.beta.js | 358 + .../static/lib/webgl-image-filter/LICENSE | 21 + .../webgl-image-filter/webgl-image-filter.js | 640 + .../web_editor/static/shapes/Airy/01.svg | 42 + .../web_editor/static/shapes/Airy/02.svg | 66 + .../web_editor/static/shapes/Airy/03.svg | 69 + .../web_editor/static/shapes/Airy/03_001.svg | 95 + .../web_editor/static/shapes/Airy/04.svg | 32 + .../web_editor/static/shapes/Airy/04_001.svg | 42 + .../web_editor/static/shapes/Airy/05.svg | 34 + .../web_editor/static/shapes/Airy/05_001.svg | 39 + .../web_editor/static/shapes/Airy/06.svg | 303 + .../web_editor/static/shapes/Airy/07.svg | 278 + .../web_editor/static/shapes/Airy/08.svg | 28 + .../web_editor/static/shapes/Airy/09.svg | 28 + .../web_editor/static/shapes/Airy/10.svg | 46 + .../web_editor/static/shapes/Airy/11.svg | 65 + .../web_editor/static/shapes/Airy/12.svg | 19 + .../web_editor/static/shapes/Airy/12_001.svg | 33 + .../web_editor/static/shapes/Airy/13.svg | 38 + .../web_editor/static/shapes/Airy/13_001.svg | 42 + .../web_editor/static/shapes/Airy/14.svg | 60 + .../web_editor/static/shapes/Blobs/01.svg | 3 + .../web_editor/static/shapes/Blobs/01_001.svg | 9 + .../web_editor/static/shapes/Blobs/02.svg | 4 + .../web_editor/static/shapes/Blobs/03.svg | 3 + .../web_editor/static/shapes/Blobs/04.svg | 3 + .../web_editor/static/shapes/Blobs/05.svg | 3 + .../web_editor/static/shapes/Blobs/06.svg | 3 + .../web_editor/static/shapes/Blobs/07.svg | 3 + .../web_editor/static/shapes/Blobs/08.svg | 3 + .../web_editor/static/shapes/Blobs/09.svg | 6 + .../web_editor/static/shapes/Blobs/10.svg | 5 + .../web_editor/static/shapes/Blobs/10_001.svg | 3 + .../web_editor/static/shapes/Blobs/11.svg | 3 + .../web_editor/static/shapes/Blobs/12.svg | 3 + .../web_editor/static/shapes/Blocks/01.svg | 26 + .../static/shapes/Blocks/01_001.svg | 26 + .../web_editor/static/shapes/Blocks/02.svg | 25 + .../static/shapes/Blocks/02_001.svg | 25 + .../web_editor/static/shapes/Blocks/03.svg | 16 + .../web_editor/static/shapes/Blocks/04.svg | 12 + .../web_editor/static/shapes/Bold/01.svg | 3 + .../web_editor/static/shapes/Bold/02.svg | 5 + .../web_editor/static/shapes/Bold/03.svg | 5 + .../web_editor/static/shapes/Bold/04.svg | 4 + .../web_editor/static/shapes/Bold/05.svg | 3 + .../web_editor/static/shapes/Bold/05_001.svg | 3 + .../web_editor/static/shapes/Bold/06.svg | 3 + .../web_editor/static/shapes/Bold/06_001.svg | 3 + .../web_editor/static/shapes/Bold/07.svg | 4 + .../web_editor/static/shapes/Bold/07_001.svg | 4 + .../web_editor/static/shapes/Bold/08.svg | 3 + .../web_editor/static/shapes/Bold/09.svg | 4 + .../web_editor/static/shapes/Bold/10.svg | 6 + .../web_editor/static/shapes/Bold/10_001.svg | 6 + .../web_editor/static/shapes/Bold/11.svg | 17 + .../web_editor/static/shapes/Bold/11_001.svg | 4 + .../web_editor/static/shapes/Bold/12.svg | 5 + .../web_editor/static/shapes/Bold/12_001.svg | 5 + .../web_editor/static/shapes/Floats/01.svg | 124 + .../web_editor/static/shapes/Floats/02.svg | 137 + .../web_editor/static/shapes/Floats/03.svg | 120 + .../web_editor/static/shapes/Floats/04.svg | 113 + .../web_editor/static/shapes/Floats/05.svg | 138 + .../web_editor/static/shapes/Floats/06.svg | 44 + .../web_editor/static/shapes/Floats/07.svg | 80 + .../web_editor/static/shapes/Floats/08.svg | 63 + .../web_editor/static/shapes/Floats/09.svg | 26 + .../web_editor/static/shapes/Floats/10.svg | 2007 + .../web_editor/static/shapes/Floats/11.svg | 259 + .../web_editor/static/shapes/Floats/12.svg | 489 + .../web_editor/static/shapes/Floats/13.svg | 92 + .../web_editor/static/shapes/Floats/14.svg | 120 + .../web_editor/static/shapes/Origins/01.svg | 7 + .../web_editor/static/shapes/Origins/02.svg | 3 + .../static/shapes/Origins/02_001.svg | 10 + .../web_editor/static/shapes/Origins/03.svg | 3 + .../web_editor/static/shapes/Origins/04.svg | 3 + .../static/shapes/Origins/04_001.svg | 3 + .../web_editor/static/shapes/Origins/05.svg | 9 + .../web_editor/static/shapes/Origins/06.svg | 9 + .../static/shapes/Origins/06_001.svg | 9 + .../web_editor/static/shapes/Origins/07.svg | 17 + .../static/shapes/Origins/07_001.svg | 18 + .../static/shapes/Origins/07_002.svg | 19 + .../web_editor/static/shapes/Origins/08.svg | 3 + .../web_editor/static/shapes/Origins/09.svg | 5 + .../static/shapes/Origins/09_001.svg | 3 + .../web_editor/static/shapes/Origins/10.svg | 7 + .../web_editor/static/shapes/Origins/11.svg | 13 + .../static/shapes/Origins/11_001.svg | 13 + .../web_editor/static/shapes/Origins/12.svg | 9 + .../web_editor/static/shapes/Origins/13.svg | 13 + .../web_editor/static/shapes/Origins/14.svg | 9 + .../static/shapes/Origins/14_001.svg | 13 + .../web_editor/static/shapes/Origins/15.svg | 3 + .../web_editor/static/shapes/Origins/16.svg | 10 + .../web_editor/static/shapes/Origins/17.svg | 9 + .../web_editor/static/shapes/Origins/18.svg | 8 + .../web_editor/static/shapes/Rainy/01.svg | 58 + .../web_editor/static/shapes/Rainy/01_001.svg | 64 + .../web_editor/static/shapes/Rainy/02.svg | 77 + .../web_editor/static/shapes/Rainy/02_001.svg | 82 + .../web_editor/static/shapes/Rainy/03.svg | 32 + .../web_editor/static/shapes/Rainy/03_001.svg | 247 + .../web_editor/static/shapes/Rainy/04.svg | 26 + .../web_editor/static/shapes/Rainy/05.svg | 53 + .../web_editor/static/shapes/Rainy/05_001.svg | 25 + .../web_editor/static/shapes/Rainy/06.svg | 29 + .../web_editor/static/shapes/Rainy/07.svg | 30 + .../web_editor/static/shapes/Rainy/08.svg | 21 + .../web_editor/static/shapes/Rainy/08_001.svg | 40 + .../web_editor/static/shapes/Rainy/09.svg | 12 + .../web_editor/static/shapes/Rainy/09_001.svg | 17 + .../web_editor/static/shapes/Rainy/10.svg | 88 + .../web_editor/static/shapes/Wavy/01.svg | 30 + .../web_editor/static/shapes/Wavy/01_001.svg | 19 + .../web_editor/static/shapes/Wavy/02.svg | 20 + .../web_editor/static/shapes/Wavy/02_001.svg | 20 + .../web_editor/static/shapes/Wavy/03.svg | 20 + .../web_editor/static/shapes/Wavy/04.svg | 16 + .../web_editor/static/shapes/Wavy/05.svg | 18 + .../web_editor/static/shapes/Wavy/06.svg | 44 + .../web_editor/static/shapes/Wavy/06_001.svg | 45 + .../web_editor/static/shapes/Wavy/07.svg | 13 + .../web_editor/static/shapes/Wavy/08.svg | 29 + .../web_editor/static/shapes/Wavy/09.svg | 19 + .../web_editor/static/shapes/Wavy/10.svg | 19 + .../web_editor/static/shapes/Wavy/11.svg | 153 + .../web_editor/static/shapes/Wavy/12.svg | 10 + .../web_editor/static/shapes/Wavy/12_001.svg | 7 + .../web_editor/static/shapes/Wavy/13.svg | 20 + .../web_editor/static/shapes/Wavy/13_001.svg | 20 + .../web_editor/static/shapes/Wavy/14.svg | 26 + .../web_editor/static/shapes/Wavy/15.svg | 9 + .../web_editor/static/shapes/Wavy/16.svg | 3 + .../web_editor/static/shapes/Wavy/17.svg | 3 + .../web_editor/static/shapes/Wavy/18.svg | 3 + .../web_editor/static/shapes/Wavy/19.svg | 4 + .../web_editor/static/shapes/Wavy/20.svg | 4 + .../web_editor/static/shapes/Wavy/21.svg | 5 + .../web_editor/static/shapes/Wavy/22.svg | 4 + .../web_editor/static/shapes/Wavy/23.svg | 3 + .../web_editor/static/shapes/Wavy/24.svg | 20 + .../web_editor/static/shapes/Wavy/25.svg | 23 + .../web_editor/static/shapes/Wavy/26.svg | 21 + .../web_editor/static/shapes/Wavy/27.svg | 48 + .../web_editor/static/shapes/Wavy/28.svg | 67 + .../web_editor/static/shapes/Zigs/01.svg | 47 + .../web_editor/static/shapes/Zigs/01_001.svg | 15 + .../web_editor/static/shapes/Zigs/02.svg | 19 + .../web_editor/static/shapes/Zigs/02_001.svg | 20 + .../web_editor/static/shapes/Zigs/03.svg | 50 + .../web_editor/static/shapes/Zigs/04.svg | 41 + .../web_editor/static/shapes/Zigs/05.svg | 10 + .../web_editor/static/shapes/Zigs/06.svg | 14 + .../web_editor/static/shapes/convert.js | 101 + .../media_dialog/document_selector.js | 79 + .../media_dialog/document_selector.xml | 30 + .../components/media_dialog/file_selector.js | 303 + .../components/media_dialog/file_selector.xml | 68 + .../components/media_dialog/icon_selector.js | 80 + .../components/media_dialog/icon_selector.xml | 27 + .../components/media_dialog/image_selector.js | 370 + .../media_dialog/image_selector.xml | 64 + .../components/media_dialog/media_dialog.js | 272 + .../components/media_dialog/media_dialog.scss | 52 + .../components/media_dialog/media_dialog.xml | 14 + .../components/media_dialog/search_media.js | 31 + .../components/media_dialog/video_selector.js | 213 + .../media_dialog/video_selector.xml | 61 + .../upload_progress_toast.js | 23 + .../upload_progress_toast.scss | 9 + .../upload_progress_toast.xml | 39 + .../upload_progress_toast/upload_service.js | 163 + .../static/src/img/curved_arrow.svg | 14 + .../static/src/img/snippet_disabled.svg | 7 + .../src/img/snippets_options/bg_shape.svg | 11 + .../img/snippets_options/bring-backward.svg | 6 + .../img/snippets_options/bring-forward.svg | 6 + .../snippets_options/o_overlay_move_drag.svg | 12 + .../static/src/img/snippets_thumbs/s_hr.svg | 22 + .../static/src/js/backend/QWebPlugin.js | 230 + .../static/src/js/backend/command_category.js | 6 + .../static/src/js/backend/convert_inline.js | 1787 + .../static/src/js/backend/field_html.js | 700 + .../static/src/js/backend/html_field.js | 757 + .../static/src/js/backend/html_field.xml | 42 + .../src/js/backend/list_editable_renderer.js | 13 + .../web_editor/static/src/js/common/ace.js | 1037 + .../src/js/common/browser_extensions.js | 21 + .../static/src/js/common/grid_layout_utils.js | 348 + .../web_editor/static/src/js/common/utils.js | 489 + .../static/src/js/common/wysiwyg_utils.js | 17 + .../static/src/js/editor/custom_colors.js | 16 + .../static/src/js/editor/image_processing.js | 542 + .../js/editor/odoo-editor/src/OdooEditor.js | 5159 +++ .../js/editor/odoo-editor/src/base_style.scss | 50 + .../js/editor/odoo-editor/src/checklist.scss | 27 + .../editor/odoo-editor/src/commands/align.js | 22 + .../odoo-editor/src/commands/commands.js | 1092 + .../src/commands/deleteBackward.js | 292 + .../odoo-editor/src/commands/deleteForward.js | 242 + .../editor/odoo-editor/src/commands/enter.js | 187 + .../odoo-editor/src/commands/shiftEnter.js | 76 + .../odoo-editor/src/commands/shiftTab.js | 79 + .../js/editor/odoo-editor/src/commands/tab.js | 31 + .../odoo-editor/src/commands/toggleList.js | 80 + .../odoo-editor/src/powerbox/Powerbox.js | 397 + .../odoo-editor/src/powerbox/patienceDiff.js | 263 + .../js/editor/odoo-editor/src/qweb_sample.js | 164 + .../src/js/editor/odoo-editor/src/style.scss | 485 + .../src/tablepicker/TablePicker.js | 161 + .../editor/odoo-editor/src/utils/constants.js | 4 + .../editor/odoo-editor/src/utils/sanitize.js | 424 + .../editor/odoo-editor/src/utils/serialize.js | 80 + .../js/editor/odoo-editor/src/utils/utils.js | 3189 ++ .../js/editor/odoo-editor/test/editor-test.js | 47 + .../js/editor/odoo-editor/test/lib/chai.js | 10989 ++++++ .../js/editor/odoo-editor/test/lib/mocha.css | 325 + .../js/editor/odoo-editor/test/lib/mocha.js | 30464 ++++++++++++++++ .../odoo-editor/test/spec/align.test.js | 318 + .../odoo-editor/test/spec/autostep.test.js | 158 + .../odoo-editor/test/spec/collab.test.js | 566 + .../odoo-editor/test/spec/color.test.js | 334 + .../odoo-editor/test/spec/copyPaste.test.js | 3128 ++ .../odoo-editor/test/spec/editor.test.js | 7842 ++++ .../odoo-editor/test/spec/fontAwesome.test.js | 513 + .../odoo-editor/test/spec/format.test.js | 1517 + .../odoo-editor/test/spec/htmlTables.test.js | 498 + .../odoo-editor/test/spec/insertHTML.test.js | 318 + .../editor/odoo-editor/test/spec/link.test.js | 1015 + .../editor/odoo-editor/test/spec/list.test.js | 9213 +++++ .../odoo-editor/test/spec/odooFields.test.js | 21 + .../odoo-editor/test/spec/powerbox.test.js | 351 + .../editor/odoo-editor/test/spec/tabs.test.js | 551 + .../odoo-editor/test/spec/urlRegex.test.js | 103 + .../odoo-editor/test/spec/utils.test.js | 2155 ++ .../src/js/editor/odoo-editor/test/utils.js | 696 + .../static/src/js/editor/perspective_utils.js | 98 + .../static/src/js/editor/snippets.editor.js | 4699 +++ .../static/src/js/editor/snippets.options.js | 8369 +++++ .../static/src/js/editor/toolbar.js | 20 + .../static/src/js/frontend/loader.js | 81 + .../static/src/js/frontend/loader_loading.js | 33 + .../static/src/js/wysiwyg/PeerToPeer.js | 678 + .../static/src/js/wysiwyg/dialog.js | 92 + .../web_editor/static/src/js/wysiwyg/fonts.js | 98 + .../src/js/wysiwyg/linkDialogCommand.js | 54 + .../src/js/wysiwyg/widgets/alt_dialog.js | 51 + .../src/js/wysiwyg/widgets/color_palette.js | 1035 + .../js/wysiwyg/widgets/image_crop_widget.js | 288 + .../static/src/js/wysiwyg/widgets/link.js | 630 + .../src/js/wysiwyg/widgets/link_dialog.js | 231 + .../js/wysiwyg/widgets/link_popover_widget.js | 339 + .../src/js/wysiwyg/widgets/link_tools.js | 522 + .../static/src/js/wysiwyg/widgets/widgets.js | 21 + .../static/src/js/wysiwyg/wysiwyg.js | 3238 ++ .../static/src/js/wysiwyg/wysiwyg_iframe.js | 242 + ...olor_system_support_primary_variables.scss | 1 + .../static/src/scss/bootstrap_overridden.scss | 86 + .../scss/bootstrap_overridden_backend.scss | 15 + .../src/scss/odoo-editor/powerbox.dark.scss | 19 + .../scss/odoo-editor/tablepicker.dark.scss | 13 + .../src/scss/odoo-editor/tableui.dark.scss | 11 + .../static/src/scss/secondary_variables.scss | 148 + .../static/src/scss/web_editor.backend.scss | 85 + .../src/scss/web_editor.common.dark.scss | 7 + .../static/src/scss/web_editor.common.scss | 1075 + .../static/src/scss/web_editor.frontend.scss | 110 + .../static/src/scss/web_editor.variables.scss | 682 + .../static/src/scss/wysiwyg.dark.scss | 17 + .../web_editor/static/src/scss/wysiwyg.scss | 720 + .../static/src/scss/wysiwyg.variables.scss | 12 + .../static/src/scss/wysiwyg_iframe.scss | 95 + .../static/src/scss/wysiwyg_snippets.scss | 2660 ++ .../web_editor/static/src/xml/ace.xml | 61 + .../web_editor/static/src/xml/backend.xml | 20 + .../web_editor/static/src/xml/editor.xml | 316 + .../web_editor/static/src/xml/grid_layout.xml | 18 + .../web_editor/static/src/xml/snippets.xml | 103 + .../web_editor/static/src/xml/wysiwyg.xml | 380 + .../static/src/xml/wysiwyg_colorpicker.xml | 33 + .../web_editor/static/tests/ajax_loader.js | 11 + .../static/tests/convert_inline_tests.js | 1145 + .../static/tests/field_html_tests.js | 1126 + .../static/tests/html_field_tests.js | 559 + .../static/tests/perspective_tests.js | 92 + .../web_editor/static/tests/test_utils.js | 899 + .../tests/test_wysiwyg_collaboration.js | 882 + .../web_editor/static/tests/utils_tests.js | 83 + .../web_editor/tests/__init__.py | 8 + .../web_editor/tests/play.png | Bin 0 -> 4801 bytes .../web_editor/tests/test_controller.py | 222 + .../web_editor/tests/test_converter.py | 224 + .../web_editor/tests/test_odoo_editor.py | 10 + .../web_editor/tests/test_tools.py | 124 + .../web_editor/tests/test_views.py | 77 + .../web_editor/tools.py | 165 + .../web_editor/views/editor.xml | 196 + .../web_editor/views/snippets.xml | 633 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../web_kanban_gauge/__init__.py | 2 + .../web_kanban_gauge/__manifest__.py | 22 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 201 bytes .../web_kanban_gauge/doc/changelog.rst | 10 + .../web_kanban_gauge/doc/index.rst | 10 + .../web_kanban_gauge/i18n/af.po | 40 + .../web_kanban_gauge/i18n/ar.po | 30 + .../web_kanban_gauge/i18n/az.po | 15 + .../web_kanban_gauge/i18n/bs.po | 32 + .../web_kanban_gauge/i18n/ca.po | 15 + .../web_kanban_gauge/i18n/cs.po | 30 + .../web_kanban_gauge/i18n/da.po | 30 + .../web_kanban_gauge/i18n/de.po | 34 + .../web_kanban_gauge/i18n/el.po | 15 + .../web_kanban_gauge/i18n/en_GB.po | 41 + .../web_kanban_gauge/i18n/es.po | 34 + .../web_kanban_gauge/i18n/es_CO.po | 52 + .../web_kanban_gauge/i18n/es_DO.po | 41 + .../web_kanban_gauge/i18n/es_EC.po | 41 + .../web_kanban_gauge/i18n/es_PE.po | 41 + .../web_kanban_gauge/i18n/et.po | 15 + .../web_kanban_gauge/i18n/eu.po | 39 + .../web_kanban_gauge/i18n/fa.po | 15 + .../web_kanban_gauge/i18n/fi.po | 15 + .../web_kanban_gauge/i18n/fr.po | 34 + .../web_kanban_gauge/i18n/gu.po | 15 + .../web_kanban_gauge/i18n/he.po | 30 + .../web_kanban_gauge/i18n/hr.po | 30 + .../web_kanban_gauge/i18n/hu.po | 30 + .../web_kanban_gauge/i18n/id.po | 15 + .../web_kanban_gauge/i18n/is.po | 15 + .../web_kanban_gauge/i18n/it.po | 34 + .../web_kanban_gauge/i18n/ja.po | 15 + .../web_kanban_gauge/i18n/kab.po | 39 + .../web_kanban_gauge/i18n/km.po | 15 + .../web_kanban_gauge/i18n/ko.po | 15 + .../web_kanban_gauge/i18n/lb.po | 30 + .../web_kanban_gauge/i18n/lt.po | 30 + .../web_kanban_gauge/i18n/lv.po | 15 + .../web_kanban_gauge/i18n/mk.po | 40 + .../web_kanban_gauge/i18n/mn.po | 30 + .../web_kanban_gauge/i18n/nb.po | 30 + .../web_kanban_gauge/i18n/nl.po | 34 + .../web_kanban_gauge/i18n/pl.po | 30 + .../web_kanban_gauge/i18n/pt.po | 30 + .../web_kanban_gauge/i18n/pt_BR.po | 30 + .../web_kanban_gauge/i18n/ro.po | 30 + .../web_kanban_gauge/i18n/ru.po | 30 + .../web_kanban_gauge/i18n/sk.po | 15 + .../web_kanban_gauge/i18n/sl.po | 15 + .../web_kanban_gauge/i18n/sr.po | 15 + .../web_kanban_gauge/i18n/sr@latin.po | 15 + .../web_kanban_gauge/i18n/sv.po | 15 + .../web_kanban_gauge/i18n/th.po | 15 + .../web_kanban_gauge/i18n/tr.po | 30 + .../web_kanban_gauge/i18n/uk.po | 34 + .../web_kanban_gauge/i18n/ur.po | 40 + .../web_kanban_gauge/i18n/vi.po | 30 + .../i18n/web_kanban_gauge.pot | 32 + .../web_kanban_gauge/i18n/zh_CN.po | 34 + .../web_kanban_gauge/i18n/zh_TW.po | 30 + .../static/src/gauge_field.js | 100 + .../static/src/gauge_field.xml | 11 + .../static/src/js/kanban_gauge.js | 130 + .../static/tests/gauge_field_tests.js | 63 + .../static/tests/gauge_tests.js | 49 + .../static/tests/gauge_value_tests.js | 57 + odoo-bringout-oca-ocb-web_tour/README.md | 48 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + odoo-bringout-oca-ocb-web_tour/doc/FAQ.md | 4 + odoo-bringout-oca-ocb-web_tour/doc/INSTALL.md | 7 + odoo-bringout-oca-ocb-web_tour/doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + odoo-bringout-oca-ocb-web_tour/doc/REPORTS.md | 3 + .../doc/SECURITY.md | 37 + .../doc/TROUBLESHOOTING.md | 5 + odoo-bringout-oca-ocb-web_tour/doc/USAGE.md | 7 + odoo-bringout-oca-ocb-web_tour/doc/WIZARDS.md | 3 + odoo-bringout-oca-ocb-web_tour/pyproject.toml | 42 + .../web_tour/__init__.py | 4 + .../web_tour/__manifest__.py | 54 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 221 bytes .../web_tour/i18n/af.po | 185 + .../web_tour/i18n/am.po | 181 + .../web_tour/i18n/ar.po | 186 + .../web_tour/i18n/az.po | 187 + .../web_tour/i18n/be.po | 185 + .../web_tour/i18n/bg.po | 193 + .../web_tour/i18n/bs.po | 181 + .../web_tour/i18n/ca.po | 193 + .../web_tour/i18n/cs.po | 191 + .../web_tour/i18n/da.po | 187 + .../web_tour/i18n/de.po | 189 + .../web_tour/i18n/el.po | 117 + .../web_tour/i18n/es.po | 190 + .../web_tour/i18n/es_MX.po | 192 + .../web_tour/i18n/et.po | 193 + .../web_tour/i18n/fa.po | 191 + .../web_tour/i18n/fi.po | 195 + .../web_tour/i18n/fr.po | 190 + .../web_tour/i18n/gu.po | 185 + .../web_tour/i18n/he.po | 190 + .../web_tour/i18n/hi.po | 186 + .../web_tour/i18n/hr.po | 190 + .../web_tour/i18n/hu.po | 189 + .../web_tour/i18n/hy.po | 181 + .../web_tour/i18n/id.po | 188 + .../web_tour/i18n/is.po | 185 + .../web_tour/i18n/it.po | 188 + .../web_tour/i18n/ja.po | 186 + .../web_tour/i18n/km.po | 187 + .../web_tour/i18n/ko.po | 186 + .../web_tour/i18n/lb.po | 112 + .../web_tour/i18n/lo.po | 186 + .../web_tour/i18n/lt.po | 192 + .../web_tour/i18n/lv.po | 191 + .../web_tour/i18n/ml.po | 185 + .../web_tour/i18n/mn.po | 191 + .../web_tour/i18n/ms.po | 185 + .../web_tour/i18n/nb.po | 188 + .../web_tour/i18n/nl.po | 188 + .../web_tour/i18n/no.po | 181 + .../web_tour/i18n/pl.po | 197 + .../web_tour/i18n/pt.po | 190 + .../web_tour/i18n/pt_BR.po | 188 + .../web_tour/i18n/ro.po | 190 + .../web_tour/i18n/ru.po | 197 + .../web_tour/i18n/sk.po | 189 + .../web_tour/i18n/sl.po | 191 + .../web_tour/i18n/sq.po | 181 + .../web_tour/i18n/sr.po | 189 + .../web_tour/i18n/sr@latin.po | 109 + .../web_tour/i18n/sv.po | 193 + .../web_tour/i18n/sw.po | 181 + .../web_tour/i18n/ta.po | 181 + .../web_tour/i18n/th.po | 188 + .../web_tour/i18n/tr.po | 194 + .../web_tour/i18n/uk.po | 186 + .../web_tour/i18n/vi.po | 188 + .../web_tour/i18n/web_tour.pot | 181 + .../web_tour/i18n/zh_CN.po | 186 + .../web_tour/i18n/zh_TW.po | 185 + .../web_tour/models/__init__.py | 5 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 257 bytes .../__pycache__/ir_http.cpython-312.pyc | Bin 0 -> 1130 bytes .../models/__pycache__/tour.cpython-312.pyc | Bin 0 -> 1878 bytes .../web_tour/models/ir_http.py | 16 + .../web_tour/models/tour.py | 30 + .../web_tour/security/ir.model.access.csv | 3 + .../web_tour/security/ir.rule.csv | 2 + .../static/src/debug/debug_manager.js | 49 + .../static/src/debug/tour_dialog_component.js | 43 + .../src/debug/tour_dialog_component.xml | 59 + .../static/src/js/public/tour_manager.js | 21 + .../src/js/running_tour_action_helper.js | 244 + .../web_tour/static/src/js/tip.js | 680 + .../web_tour/static/src/js/tour_manager.js | 576 + .../web_tour/static/src/js/tour_service.js | 242 + .../web_tour/static/src/js/tour_step_utils.js | 202 + .../web_tour/static/src/js/tour_utils.js | 78 + .../web_tour/static/src/scss/tip.scss | 244 + .../static/src/services/tour_service.js | 93 + .../web_tour/static/src/xml/tip.xml | 9 + .../static/tests/debug_manager_tests.js | 67 + .../static/tests/tour_manager_tests.js | 249 + .../web_tour/views/tour_views.xml | 28 + odoo-bringout-oca-ocb-web_unsplash/README.md | 47 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 17 + .../doc/DEPENDENCIES.md | 6 + odoo-bringout-oca-ocb-web_unsplash/doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 15 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 43 + .../web_unsplash/__init__.py | 5 + .../web_unsplash/__manifest__.py | 25 + .../web_unsplash/controllers/__init__.py | 3 + .../web_unsplash/controllers/main.py | 154 + .../web_unsplash/i18n/af.po | 193 + .../web_unsplash/i18n/am.po | 189 + .../web_unsplash/i18n/ar.po | 196 + .../web_unsplash/i18n/az.po | 198 + .../web_unsplash/i18n/be.po | 193 + .../web_unsplash/i18n/bg.po | 195 + .../web_unsplash/i18n/bs.po | 189 + .../web_unsplash/i18n/ca.po | 202 + .../web_unsplash/i18n/cs.po | 197 + .../web_unsplash/i18n/da.po | 195 + .../web_unsplash/i18n/de.po | 201 + .../web_unsplash/i18n/el.po | 141 + .../web_unsplash/i18n/es.po | 199 + .../web_unsplash/i18n/es_MX.po | 197 + .../web_unsplash/i18n/et.po | 197 + .../web_unsplash/i18n/fa.po | 198 + .../web_unsplash/i18n/fi.po | 198 + .../web_unsplash/i18n/fr.po | 198 + .../web_unsplash/i18n/gu.po | 193 + .../web_unsplash/i18n/he.po | 195 + .../web_unsplash/i18n/hi.po | 194 + .../web_unsplash/i18n/hr.po | 202 + .../web_unsplash/i18n/hu.po | 197 + .../web_unsplash/i18n/hy.po | 189 + .../web_unsplash/i18n/id.po | 196 + .../web_unsplash/i18n/is.po | 194 + .../web_unsplash/i18n/it.po | 196 + .../web_unsplash/i18n/ja.po | 194 + .../web_unsplash/i18n/km.po | 196 + .../web_unsplash/i18n/ko.po | 195 + .../web_unsplash/i18n/lb.po | 160 + .../web_unsplash/i18n/lo.po | 194 + .../web_unsplash/i18n/lt.po | 195 + .../web_unsplash/i18n/lv.po | 195 + .../web_unsplash/i18n/ml.po | 193 + .../web_unsplash/i18n/mn.po | 194 + .../web_unsplash/i18n/ms.po | 193 + .../web_unsplash/i18n/nb.po | 194 + .../web_unsplash/i18n/nl.po | 199 + .../web_unsplash/i18n/no.po | 189 + .../web_unsplash/i18n/pl.po | 200 + .../web_unsplash/i18n/pt.po | 196 + .../web_unsplash/i18n/pt_BR.po | 198 + .../web_unsplash/i18n/ro.po | 203 + .../web_unsplash/i18n/ru.po | 201 + .../web_unsplash/i18n/sk.po | 194 + .../web_unsplash/i18n/sl.po | 201 + .../web_unsplash/i18n/sq.po | 189 + .../web_unsplash/i18n/sr.po | 198 + .../web_unsplash/i18n/sv.po | 198 + .../web_unsplash/i18n/sw.po | 189 + .../web_unsplash/i18n/ta.po | 189 + .../web_unsplash/i18n/th.po | 195 + .../web_unsplash/i18n/tr.po | 201 + .../web_unsplash/i18n/uk.po | 195 + .../web_unsplash/i18n/vi.po | 197 + .../web_unsplash/i18n/web_unsplash.pot | 189 + .../web_unsplash/i18n/zh_CN.po | 194 + .../web_unsplash/i18n/zh_TW.po | 194 + .../web_unsplash/models/__init__.py | 7 + .../web_unsplash/models/ir_attachment.py | 18 + .../web_unsplash/models/ir_qweb_fields.py | 30 + .../models/res_config_settings.py | 10 + .../web_unsplash/models/res_users.py | 15 + .../web_unsplash/static/description/icon.png | Bin 0 -> 6629 bytes .../web_unsplash/static/description/icon.svg | 1 + .../web_unsplash/static/description/icon2.png | Bin 0 -> 16456 bytes .../static/description/index.html | 22 + .../static/description/unsplash_interface.png | Bin 0 -> 380543 bytes .../description/unsplash_interface_bar.png | Bin 0 -> 11799 bytes .../components/media_dialog/image_selector.js | 282 + .../media_dialog/image_selector.xml | 82 + .../static/src/js/unsplash_beacon.js | 34 + .../static/src/services/unsplash_service.js | 59 + .../views/res_config_settings_view.xml | 27 + 791 files changed, 410049 insertions(+) create mode 100644 README.md create mode 100644 odoo-bringout-oca-ocb-web_editor/README.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/FAQ.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/INSTALL.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/MODELS.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/REPORTS.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/SECURITY.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/USAGE.md create mode 100644 odoo-bringout-oca-ocb-web_editor/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-ocb-web_editor/pyproject.toml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/__manifest__.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/__pycache__/__init__.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/__pycache__/tools.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/controllers/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/controllers/__pycache__/__init__.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/controllers/__pycache__/main.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/controllers/main.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/data/editor_assets.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/af.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/am.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ar.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/az.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/be.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bg.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bs.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ca.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/cs.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/da.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/de.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/el.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_AU.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_GB.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CL.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CO.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CR.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_DO.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_EC.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_MX.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_PE.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_VE.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/et.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fa.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fi.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr_CA.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gl.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gu.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/he.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hi.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hr.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hu.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hy.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/id.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/is.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/it.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ja.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ka.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/kab.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/km.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ko.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lb.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lo.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lt.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lv.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mk.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ml.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mn.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ms.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nb.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nl.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/no.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pl.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ro.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ru.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sk.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sl.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sq.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr@latin.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sv.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sw.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ta.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/th.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/tr.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/uk.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/vi.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/web_editor.pot create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_CN.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_TW.po create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/__init__.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/assets.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_attachment.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_http.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_qweb_fields.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_ui_view.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_websocket.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/models.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/test_models.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/assets.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_attachment.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_http.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_qweb_fields.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_ui_view.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_websocket.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/models.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/models/test_models.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/security/ir.model.access.csv create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_3.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_3.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_4.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_5.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_6.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.html create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_landscape.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_portrait.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_front.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_landscape.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_portrait.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_landscape.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_portrait.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_front.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_3.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_3.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_4.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_square_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_star.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_sun.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_triangle.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_3.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/organic_1_line.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_2_line.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_3_pattern_line.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_2_pattern_dot.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_3_pattern_cross.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_4_pattern_caps.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_labyrinth.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_points_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_3.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_4.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_1_solid_rd.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_2_solid_str.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_3_solid_rd.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/oval_1_solid_rd.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_4.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_2.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_organic_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_circuit_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_filter_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_flag_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_organics_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_rain_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_snow_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_speed_1.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/DOMPurify.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/cropperjs/LICENSE create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/cropperjs/cropper.css create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/cropperjs/cropper.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/html2canvas.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/jQuery.transfo.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/jquery-cropper/LICENSE create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/jquery-cropper/jquery-cropper.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/vkbeautify/vkbeautify.0.99.00.beta.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/webgl-image-filter/LICENSE create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/webgl-image-filter/webgl-image-filter.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/11.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/14.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/11.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/12.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/11.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/12.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/13.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/14.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_002.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/12.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/13.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/15.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/16.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/17.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/18.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/07.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/08.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/09.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/10.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/11.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/14.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/15.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/16.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/17.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/18.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/19.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/20.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/21.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/22.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/23.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/24.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/25.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/26.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/27.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/28.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02_001.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/03.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/04.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/05.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/06.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/convert.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/search_media.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/upload_progress_toast/upload_service.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/curved_arrow.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/snippet_disabled.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/snippets_options/bg_shape.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/snippets_options/bring-backward.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/snippets_options/bring-forward.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/snippets_options/o_overlay_move_drag.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/img/snippets_thumbs/s_hr.svg create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/QWebPlugin.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/command_category.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/convert_inline.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/field_html.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/html_field.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/html_field.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/backend/list_editable_renderer.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/common/ace.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/common/browser_extensions.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/common/grid_layout_utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/common/utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/common/wysiwyg_utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/custom_colors.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/image_processing.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/base_style.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/checklist.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/align.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/commands.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/deleteBackward.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/deleteForward.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/enter.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/shiftEnter.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/shiftTab.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/tab.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/commands/toggleList.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/powerbox/Powerbox.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/powerbox/patienceDiff.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/qweb_sample.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/style.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/tablepicker/TablePicker.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/utils/constants.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/utils/sanitize.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/utils/serialize.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/src/utils/utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/editor-test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/lib/chai.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/lib/mocha.css create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/lib/mocha.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/align.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/autostep.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/collab.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/color.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/copyPaste.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/editor.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/fontAwesome.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/format.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/htmlTables.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/insertHTML.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/link.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/list.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/odooFields.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/powerbox.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/tabs.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/urlRegex.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/spec/utils.test.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/odoo-editor/test/utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/perspective_utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/snippets.editor.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/snippets.options.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/editor/toolbar.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/frontend/loader.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/frontend/loader_loading.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/PeerToPeer.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/dialog.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/fonts.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/linkDialogCommand.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/color_palette.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/link.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/link_dialog.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/link_tools.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/widgets/widgets.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/wysiwyg.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/js/wysiwyg/wysiwyg_iframe.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/13_0_color_system_support_primary_variables.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/bootstrap_overridden.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/bootstrap_overridden_backend.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/odoo-editor/powerbox.dark.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/odoo-editor/tablepicker.dark.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/odoo-editor/tableui.dark.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/secondary_variables.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/web_editor.backend.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/web_editor.common.dark.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/web_editor.common.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/web_editor.frontend.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/web_editor.variables.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/wysiwyg.dark.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/wysiwyg.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/wysiwyg.variables.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/wysiwyg_iframe.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/scss/wysiwyg_snippets.scss create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/ace.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/backend.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/editor.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/grid_layout.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/snippets.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/wysiwyg.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/src/xml/wysiwyg_colorpicker.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/ajax_loader.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/convert_inline_tests.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/field_html_tests.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/html_field_tests.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/perspective_tests.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/test_utils.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/test_wysiwyg_collaboration.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/static/tests/utils_tests.js create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/play.png create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/test_controller.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/test_converter.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/test_odoo_editor.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/test_tools.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tests/test_views.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/tools.py create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/views/editor.xml create mode 100644 odoo-bringout-oca-ocb-web_editor/web_editor/views/snippets.xml create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/README.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/FAQ.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/INSTALL.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/MODELS.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/REPORTS.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/SECURITY.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/USAGE.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/pyproject.toml create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/__manifest__.py create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/__pycache__/__init__.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/doc/changelog.rst create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/doc/index.rst create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/af.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ar.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/az.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/bs.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ca.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/cs.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/da.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/de.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/el.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/en_GB.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/es.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/es_CO.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/es_DO.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/es_EC.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/es_PE.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/et.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/eu.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/fa.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/fi.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/fr.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/gu.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/he.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/hr.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/hu.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/id.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/is.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/it.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ja.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/kab.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/km.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ko.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/lb.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/lt.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/lv.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/mk.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/mn.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/nb.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/nl.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/pl.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/pt.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ro.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ru.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/sk.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/sl.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/sr.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/sr@latin.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/sv.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/th.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/tr.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/uk.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/ur.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/vi.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/web_kanban_gauge.pot create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/zh_CN.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/i18n/zh_TW.po create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/static/src/gauge_field.js create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/static/src/gauge_field.xml create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/static/src/js/kanban_gauge.js create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/static/tests/gauge_field_tests.js create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/static/tests/gauge_tests.js create mode 100644 odoo-bringout-oca-ocb-web_kanban_gauge/web_kanban_gauge/static/tests/gauge_value_tests.js create mode 100644 odoo-bringout-oca-ocb-web_tour/README.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/FAQ.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/INSTALL.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/MODELS.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/REPORTS.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/SECURITY.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/USAGE.md create mode 100644 odoo-bringout-oca-ocb-web_tour/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-ocb-web_tour/pyproject.toml create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/__manifest__.py create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/__pycache__/__init__.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/af.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/am.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ar.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/az.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/be.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/bg.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/bs.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ca.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/cs.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/da.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/de.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/el.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/es.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/es_MX.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/et.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/fa.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/fi.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/fr.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/gu.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/he.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/hi.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/hr.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/hu.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/hy.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/id.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/is.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/it.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ja.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/km.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ko.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/lb.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/lo.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/lt.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/lv.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ml.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/mn.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ms.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/nb.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/nl.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/no.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/pl.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/pt.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ro.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ru.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sk.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sl.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sq.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sr.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sr@latin.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sv.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/sw.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/ta.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/th.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/tr.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/uk.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/vi.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/web_tour.pot create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/zh_CN.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/i18n/zh_TW.po create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/models/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/models/__pycache__/__init__.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/models/__pycache__/ir_http.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/models/__pycache__/tour.cpython-312.pyc create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/models/ir_http.py create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/models/tour.py create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/security/ir.model.access.csv create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/security/ir.rule.csv create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/debug/debug_manager.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/debug/tour_dialog_component.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/debug/tour_dialog_component.xml create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/public/tour_manager.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/running_tour_action_helper.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/tip.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/tour_manager.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/tour_service.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/tour_step_utils.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/tour_utils.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/scss/tip.scss create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/services/tour_service.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/src/xml/tip.xml create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/tests/debug_manager_tests.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/static/tests/tour_manager_tests.js create mode 100644 odoo-bringout-oca-ocb-web_tour/web_tour/views/tour_views.xml create mode 100644 odoo-bringout-oca-ocb-web_unsplash/README.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/FAQ.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/INSTALL.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/MODELS.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/REPORTS.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/SECURITY.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/USAGE.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-ocb-web_unsplash/pyproject.toml create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/__manifest__.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/controllers/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/controllers/main.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/af.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/am.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ar.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/az.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/be.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/bg.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/bs.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ca.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/cs.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/da.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/de.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/el.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/es.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/es_MX.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/et.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/fa.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/fi.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/fr.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/gu.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/he.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/hi.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/hr.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/hu.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/hy.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/id.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/is.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/it.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ja.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/km.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ko.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/lb.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/lo.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/lt.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/lv.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ml.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/mn.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ms.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/nb.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/nl.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/no.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/pl.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/pt.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ro.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ru.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/sk.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/sl.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/sq.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/sr.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/sv.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/sw.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/ta.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/th.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/tr.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/uk.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/vi.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/web_unsplash.pot create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/zh_CN.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/i18n/zh_TW.po create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/models/__init__.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/models/ir_attachment.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/models/ir_qweb_fields.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/models/res_config_settings.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/models/res_users.py create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/description/icon.png create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/description/icon.svg create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/description/icon2.png create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/description/index.html create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/description/unsplash_interface.png create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/description/unsplash_interface_bar.png create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/src/components/media_dialog/image_selector.js create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/src/components/media_dialog/image_selector.xml create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/src/js/unsplash_beacon.js create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/static/src/services/unsplash_service.js create mode 100644 odoo-bringout-oca-ocb-web_unsplash/web_unsplash/views/res_config_settings_view.xml diff --git a/README.md b/README.md new file mode 100644 index 0000000..00eecc8 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Web + +This repository contains OCA OCB packages for web. + +## Packages Included + +- odoo-bringout-oca-ocb-web_editor +- odoo-bringout-oca-ocb-web_kanban_gauge +- odoo-bringout-oca-ocb-web_tour +- odoo-bringout-oca-ocb-web_unsplash diff --git a/odoo-bringout-oca-ocb-web_editor/README.md b/odoo-bringout-oca-ocb-web_editor/README.md new file mode 100644 index 0000000..df20d4d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/README.md @@ -0,0 +1,49 @@ +# Web Editor + + +Odoo Web Editor widget. +========================== + + + +## Installation + +```bash +pip install odoo-bringout-oca-ocb-web_editor +``` + +## Dependencies + +This addon depends on: +- bus +- web + +## Manifest Information + +- **Name**: Web Editor +- **Version**: N/A +- **Category**: Hidden +- **License**: LGPL-3 +- **Installable**: False + +## Source + +Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `web_editor`. + +## License + +This package maintains the original LGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-ocb-web_editor/doc/ARCHITECTURE.md b/odoo-bringout-oca-ocb-web_editor/doc/ARCHITECTURE.md new file mode 100644 index 0000000..e13a170 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Web_editor Module - web_editor + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/CONFIGURATION.md b/odoo-bringout-oca-ocb-web_editor/doc/CONFIGURATION.md new file mode 100644 index 0000000..816a70d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for web_editor. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/CONTROLLERS.md b/odoo-bringout-oca-ocb-web_editor/doc/CONTROLLERS.md new file mode 100644 index 0000000..ff097c0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/CONTROLLERS.md @@ -0,0 +1,17 @@ +# Controllers + +HTTP routes provided by this module. + +```mermaid +sequenceDiagram + participant U as User/Client + participant C as Module Controllers + participant O as ORM/Views + + U->>C: HTTP GET/POST (routes) + C->>O: ORM operations, render templates + O-->>U: HTML/JSON/PDF +``` + +Notes +- See files in controllers/ for route definitions. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/DEPENDENCIES.md b/odoo-bringout-oca-ocb-web_editor/doc/DEPENDENCIES.md new file mode 100644 index 0000000..3ed5966 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/DEPENDENCIES.md @@ -0,0 +1,6 @@ +# Dependencies + +This addon depends on: + +- [bus](../../odoo-bringout-oca-ocb-bus) +- [web](../../odoo-bringout-oca-ocb-web) diff --git a/odoo-bringout-oca-ocb-web_editor/doc/FAQ.md b/odoo-bringout-oca-ocb-web_editor/doc/FAQ.md new file mode 100644 index 0000000..9abe7ed --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon web_editor or install in UI. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/INSTALL.md b/odoo-bringout-oca-ocb-web_editor/doc/INSTALL.md new file mode 100644 index 0000000..c4f50a4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-ocb-web_editor" +# or +uv pip install odoo-bringout-oca-ocb-web_editor" +``` diff --git a/odoo-bringout-oca-ocb-web_editor/doc/MODELS.md b/odoo-bringout-oca-ocb-web_editor/doc/MODELS.md new file mode 100644 index 0000000..25524c2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/MODELS.md @@ -0,0 +1,50 @@ +# Models + +Detected core models and extensions in web_editor. + +```mermaid +classDiagram + class ir_qweb_field + class ir_qweb_field_contact + class ir_qweb_field_date + class ir_qweb_field_datetime + class ir_qweb_field_duration + class ir_qweb_field_float + class ir_qweb_field_html + class ir_qweb_field_image + class ir_qweb_field_integer + class ir_qweb_field_many2one + class ir_qweb_field_monetary + class ir_qweb_field_qweb + class ir_qweb_field_relative + class ir_qweb_field_selection + class ir_qweb_field_text + class web_editor_assets + class web_editor_converter_test + class web_editor_converter_test_sub + class base + class ir_attachment + class ir_http + class ir_qweb + class ir_qweb_field + class ir_qweb_field_contact + class ir_qweb_field_date + class ir_qweb_field_datetime + class ir_qweb_field_duration + class ir_qweb_field_float + class ir_qweb_field_html + class ir_qweb_field_image + class ir_qweb_field_integer + class ir_qweb_field_many2one + class ir_qweb_field_monetary + class ir_qweb_field_qweb + class ir_qweb_field_relative + class ir_qweb_field_selection + class ir_qweb_field_text + class ir_ui_view + class ir_websocket +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/OVERVIEW.md b/odoo-bringout-oca-ocb-web_editor/doc/OVERVIEW.md new file mode 100644 index 0000000..ad95d92 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: web_editor. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon web_editor +- License: LGPL-3 diff --git a/odoo-bringout-oca-ocb-web_editor/doc/REPORTS.md b/odoo-bringout-oca-ocb-web_editor/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/SECURITY.md b/odoo-bringout-oca-ocb-web_editor/doc/SECURITY.md new file mode 100644 index 0000000..396a3aa --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/SECURITY.md @@ -0,0 +1,34 @@ +# Security + +Access control and security definitions in web_editor. + +## Access Control Lists (ACLs) + +Model access permissions defined in: +- **[ir.model.access.csv](../web_editor/security/ir.model.access.csv)** + - 2 model access rules + +## Record Rules + +Row-level security rules defined in: + +```mermaid +graph TB + subgraph "Security Layers" + A[Users] --> B[Groups] + B --> C[Access Control Lists] + C --> D[Models] + B --> E[Record Rules] + E --> F[Individual Records] + end +``` + +Security files overview: +- **[ir.model.access.csv](../web_editor/security/ir.model.access.csv)** + - Model access permissions (CRUD rights) + +Notes +- Access Control Lists define which groups can access which models +- Record Rules provide row-level security (filter records by user/group) +- Security groups organize users and define permission sets +- All security is enforced at the ORM level by Odoo diff --git a/odoo-bringout-oca-ocb-web_editor/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-ocb-web_editor/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-ocb-web_editor/doc/USAGE.md b/odoo-bringout-oca-ocb-web_editor/doc/USAGE.md new file mode 100644 index 0000000..690a5dc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/odoo_web_server.py --db-name mydb --addon web_editor +``` diff --git a/odoo-bringout-oca-ocb-web_editor/doc/WIZARDS.md b/odoo-bringout-oca-ocb-web_editor/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-ocb-web_editor/pyproject.toml b/odoo-bringout-oca-ocb-web_editor/pyproject.toml new file mode 100644 index 0000000..476c6e4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/pyproject.toml @@ -0,0 +1,43 @@ +[project] +name = "odoo-bringout-oca-ocb-web_editor" +version = "16.0.0" +description = "Web Editor - Odoo addon" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-bus>=16.0.0", + "odoo-bringout-oca-ocb-web>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/odoo-bringout-oca-ocb-web_editor" +repository = "https://github.com/bringout/odoo-bringout-oca-ocb-web_editor" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["web_editor"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/__init__.py b/odoo-bringout-oca-ocb-web_editor/web_editor/__init__.py new file mode 100644 index 0000000..7d34c7c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/__manifest__.py b/odoo-bringout-oca-ocb-web_editor/web_editor/__manifest__.py new file mode 100644 index 0000000..0f15936 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/__manifest__.py @@ -0,0 +1,180 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Web Editor', + 'category': 'Hidden', + 'description': """ +Odoo Web Editor widget. +========================== + +""", + 'depends': ['bus', 'web'], + 'data': [ + 'security/ir.model.access.csv', + 'data/editor_assets.xml', + 'views/editor.xml', + 'views/snippets.xml', + ], + 'assets': { + + #---------------------------------------------------------------------- + # MAIN BUNDLES + #---------------------------------------------------------------------- + + 'web_editor.assets_wysiwyg': [ + # lib + 'web_editor/static/lib/cropperjs/cropper.css', + 'web_editor/static/lib/cropperjs/cropper.js', + 'web_editor/static/lib/jquery-cropper/jquery-cropper.js', + 'web_editor/static/lib/jQuery.transfo.js', + 'web/static/lib/nearest/jquery.nearest.js', + 'web_editor/static/lib/webgl-image-filter/webgl-image-filter.js', + 'web_editor/static/lib/DOMPurify.js', + + # odoo-editor + 'web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js', + 'web_editor/static/src/js/editor/odoo-editor/src/utils/constants.js', + 'web_editor/static/src/js/editor/odoo-editor/src/utils/sanitize.js', + 'web_editor/static/src/js/editor/odoo-editor/src/utils/serialize.js', + 'web_editor/static/src/js/editor/odoo-editor/src/tablepicker/TablePicker.js', + 'web_editor/static/src/js/editor/odoo-editor/src/powerbox/patienceDiff.js', + 'web_editor/static/src/js/editor/odoo-editor/src/powerbox/Powerbox.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/align.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/commands.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/deleteBackward.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/deleteForward.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/enter.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/shiftEnter.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/shiftTab.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/tab.js', + 'web_editor/static/src/js/editor/odoo-editor/src/commands/toggleList.js', + + # utils + 'web_editor/static/src/js/wysiwyg/linkDialogCommand.js', + 'web_editor/static/src/js/wysiwyg/PeerToPeer.js', + + # odoo utils + ('include', 'web._assets_helpers'), + + 'web_editor/static/src/scss/bootstrap_overridden.scss', + 'web/static/src/scss/pre_variables.scss', + 'web/static/lib/bootstrap/scss/_variables.scss', + 'web_editor/static/src/js/editor/odoo-editor/src/style.scss', + + # integration + 'web_editor/static/src/scss/wysiwyg.scss', + 'web_editor/static/src/scss/wysiwyg_iframe.scss', + 'web_editor/static/src/scss/wysiwyg_snippets.scss', + + 'web_editor/static/src/js/editor/perspective_utils.js', + 'web_editor/static/src/js/editor/image_processing.js', + 'web_editor/static/src/js/editor/custom_colors.js', + + # widgets & plugins + 'web_editor/static/src/js/wysiwyg/widgets/**/*', + 'web_editor/static/src/js/editor/snippets.editor.js', + 'web_editor/static/src/js/editor/toolbar.js', + 'web_editor/static/src/js/editor/snippets.options.js', + + # Launcher + 'web_editor/static/src/js/wysiwyg/wysiwyg.js', + 'web_editor/static/src/js/wysiwyg/wysiwyg_iframe.js', + + 'web_editor/static/src/xml/editor.xml', + 'web_editor/static/src/xml/grid_layout.xml', + 'web_editor/static/src/xml/snippets.xml', + 'web_editor/static/src/xml/wysiwyg.xml', + 'web_editor/static/src/xml/wysiwyg_colorpicker.xml', + ], + 'web_editor.assets_media_dialog': [ + 'web_editor/static/src/components/**/*', + ], + 'web_editor.assets_tests_styles': [ + ('include', 'web._assets_helpers'), + 'web_editor/static/src/js/editor/odoo-editor/src/base_style.scss', + 'web_editor/static/src/js/editor/odoo-editor/src/checklist.scss', + ], + 'web.assets_common': [ + 'web_editor/static/src/js/editor/odoo-editor/src/base_style.scss', + 'web_editor/static/lib/vkbeautify/**/*', + 'web_editor/static/src/js/common/**/*', + 'web_editor/static/src/js/editor/odoo-editor/src/utils/utils.js', + 'web_editor/static/src/js/wysiwyg/fonts.js', + 'web_editor/static/src/xml/ace.xml', + ], + 'web.assets_backend': [ + ('include', 'web_editor.assets_media_dialog'), + + 'web_editor/static/src/scss/web_editor.common.scss', + 'web_editor/static/src/scss/web_editor.backend.scss', + + 'web_editor/static/src/js/wysiwyg/dialog.js', + 'web_editor/static/src/js/frontend/loader.js', + 'web_editor/static/src/js/backend/**/*', + 'web_editor/static/src/xml/backend.xml', + ], + "web.dark_mode_assets_backend": [ + 'web_editor/static/src/scss/odoo-editor/powerbox.dark.scss', + 'web_editor/static/src/scss/odoo-editor/tablepicker.dark.scss', + 'web_editor/static/src/scss/odoo-editor/tableui.dark.scss', + 'web_editor/static/src/scss/wysiwyg.dark.scss', + 'web_editor/static/src/scss/web_editor.common.dark.scss', + ], + 'web.assets_frontend_minimal': [ + 'web_editor/static/src/js/frontend/loader_loading.js', + ], + 'web.assets_frontend': [ + ('include', 'web_editor.assets_media_dialog'), + + 'web_editor/static/src/js/editor/odoo-editor/src/base_style.scss', + 'web_editor/static/lib/vkbeautify/**/*', + 'web_editor/static/src/js/common/**/*', + 'web_editor/static/src/js/editor/odoo-editor/src/utils/utils.js', + 'web_editor/static/src/js/wysiwyg/fonts.js', + 'web_editor/static/src/xml/ace.xml', + + 'web_editor/static/src/scss/web_editor.common.scss', + 'web_editor/static/src/scss/web_editor.frontend.scss', + + 'web_editor/static/src/js/wysiwyg/dialog.js', + 'web_editor/static/src/js/frontend/loader.js', + ], + 'web.report_assets_common': [ + 'web_editor/static/src/scss/bootstrap_overridden.scss', + 'web_editor/static/src/scss/web_editor.common.scss', + ], + + #---------------------------------------------------------------------- + # SUB BUNDLES + #---------------------------------------------------------------------- + + 'web._assets_primary_variables': [ + 'web_editor/static/src/scss/web_editor.variables.scss', + 'web_editor/static/src/scss/wysiwyg.variables.scss', + ], + 'web._assets_secondary_variables': [ + 'web_editor/static/src/scss/secondary_variables.scss', + ], + 'web._assets_backend_helpers': [ + 'web_editor/static/src/scss/bootstrap_overridden_backend.scss', + 'web_editor/static/src/scss/bootstrap_overridden.scss', + ], + 'web._assets_frontend_helpers': [ + ('prepend', 'web_editor/static/src/scss/bootstrap_overridden.scss'), + ], + + # ---------------------------------------------------------------------- + # TESTS BUNDLES + # ---------------------------------------------------------------------- + + 'web.qunit_suite_tests': [ + ('include', 'web_editor.assets_wysiwyg'), + + 'web_editor/static/tests/**/*', + 'web_editor/static/src/js/editor/odoo-editor/test/utils.js' + ], + }, + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/__pycache__/__init__.cpython-312.pyc b/odoo-bringout-oca-ocb-web_editor/web_editor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d79cee8ae4af975a9b95b77187d1dbd1969a157f GIT binary patch literal 260 zcmX@j%ge>Uz`($wxhi8a0|Ucj5C?{tpp4Hl3=9m@8B!Qh7;_kM8KW2(L2RZRhFqp7 zCPs!zW=)otj0_A6nvA!&lk@XRit=-EQj3Z;8E>)W=BK3Q6#Hp1-(o0YW?*0_Vqsul zSjq4iWb&^V{fzwFRQ-(9qP)Zu{oxg2d$P#Prl+{rr^td|jA? zZhms2Zhmr-Zh2}_d}>N&Nq&(&5;HzNGcU6wK3=b&@)n0pZhlH>PO4oICj$cm$bH4U a3=9k(m>C%vzj81zO5I}+DPm_}U;qG3EJS4h literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/__pycache__/tools.cpython-312.pyc b/odoo-bringout-oca-ocb-web_editor/web_editor/__pycache__/tools.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb2a3ce71083bf30881d536d7816454796f73aae GIT binary patch literal 6527 zcmX@j%ge>Uz`($wxhjKQnt|alhy%myP{!vD1_p-d3@HpLj5!QZ5SlTH5zJ?bVoG61 zVaj37Wr<>81j#Yyu;#Kwv4PnvIqbO{Q5;}4YYt~FR}>eR&6dNR%M-=J$dJMw#hb#B z!kNOA!kxmC!kfZ3hb@XPg};R%ia$j-MWBT-N+3nBg&|5XMW}@#N~n@iQ{*McS$>*~ zx7d6Wi?T}#G#PJk6eJcEr^Xi+Yck&ADlN*1Pt8ltPf68eyu}!=$#{!5GdD3kHNK!I zKRLCyxGFSGBcr6Gz)D}g21FNw82b8}(TTcM2D+B9+8WU@x-ojO)rPfjAx*6qJrF0h z+DON=R>LY9q_Emh$Fx?{UPE6`OVeJZsxMB%-b%yX3T&pmm8QMEzNWo~y;XU6d5m67 zZj2t7SD9a0QW~R|l&W6?W+tU-=;q}o=jUfTB3rrRFB3rs&s{>DLrz z(}IDmZj>~lqZ%XXT;c-*}_2yAv0H zs;eN4&~yNHx4lMLj9z7aX?7{twfbf8#TohK`k5*5HLy@Zl7$HsWEAKZXQt?5Qv>#% zeob;terXDd(Z#7nWtqvT#rnk=iAAYpG4^GdDYnp1&?_lT$%i>XUlWu9vrDZsL2(L- zenbF((?E<~MoDf?jec2-UU7L^jix5sEp}*{y~PTS)LT4YDjwqCTii&oa*GohPKmj< zSiycvW&~wiC}v?`U|?ooVEF9A1S(r<7>XGy8B5?QvY4Rikf;)n9x%U#VKr2K0%H*y z0bOihEes3{DNK?K3=9apwTv~4MI0$iHH<0DU>U|V=3oY*O=AJ;fxD!Fu~?Roc-^e1 zx@(zgn2JPFSZbKEIAQKZ&?#)Ip&?VlM3NiX(QIL^VJ;F$VXt8(U<)%zws4@?!cxOh z#F4^L!vYOg7LrWkL^F-GhP6l}g|mj0fSXxCwp21|a#fWoIOpdUl$N9xE0koUDwHMW zWTq$-=a&{Gr|KxAc)BPg=A|eUrKYD=DCB~QRfV*o{9J|f%(B!xh0q`$ zE(Ivi$S+dx%g;+y$jnnnPApDU$WK$q%!3#k8swv?2Uh7<#KFM8@Dh|Ti$HN$1gcnX zF=eI{aWgP56!CxvUIqpRP1ajXMX9&gic=Gdk~41cgUyKtRa#)D+~R{|rg$(fwfGim zdQpC9fhOB6PH@QuQhAFPnhoQ@?!Lth$%PP(AW|lT%JajsB2<7IoFO5cVo(Nw`1Dt# zenx(7s(walQC?z-esNK&i|J~bt?B)>=>iCL1LpHr+?PdBo@gsFff2{u>vClLj%J{ z4hA048~nmg*g4xP8!M;CFVMWou5(91YCh*o&Lw&qBrhsi?})rC;oiY}lUw43i0q8o z6@eG!^*6{~5VpU-WB-JQuivxNb4uQV@QY%)D=IJZSbkz)Xa z2UZ47k&kQ)JmNP*q-R85m({x{tGA-$vaHF5>X-WskHmTV0Mh9a*N)*9XvHXBgU$ymWy!~|-z zRWKHVXpjsCM5c%?UE5sbE)#fLIuAVg6y<2|=ueGHdx$L~HoV7>YP+_)|o|#T0Lf7|6^##T0R{jBE+4(acc8pCS%Y z0}Ja~ffTVCfii|7?izsvW5iX_;7`gr{ZaXC25(R{@Q z4N)nO>uT7cJZTUwMFwtQiocBpCK0=o!QVBcacO3ir*s$*|)B$k%sgNoo=EV-p6skgXO^AeMCQnQK^3o>tU zB-(tzh&o8*e0aBQgSzL09DXsVxLlv*SetCI0sG(OC2i2-0o_8v*i9zCO4jsbVk9 z)Xm9H&#&SGHSjX?(sdy&tWttlj#T`E^+K$NngFVWs>C1);gtedS%H2PJItw|Y6{66 z;K~B52x8VPMte;ru;0NEdW#b*42noiR&aq{1gcVQae^zZl+5IkB2de%2$Zul1&hQ$ z6`=}<&|qL-xW${1nUWe04_AILH?1@$r#QJNH8t-R4_KhGBp&2vC@&=!!h`5d$&Ckv z1gJ^{*YQQhAj6G7hI4?u9iN#3u2sRVg;aV)24LyRlK9k$lA^?0Y+$z*LpqO;h$t3h zU|@jMi%4XV3`nC;I=nIiRovj3%z=S{!IFW2p;(d$RFi$-Vc=6a4gGikD;!Rup!ybyQvCkh;k&d_z{Q!)=0Dr{4!22355Vw+Xfvc@#la zqM}lV+XSnNJaRX=`QeIgC~Cq*rEW;ebhu40>GZiFthhk&qOi&(VXYNR9UM2rloxm` zuv!tlLt+Ql1rg^?&KsP96T&ZX%HVKT_R4s$> zXBY4&3)U)}F@>>)v5cXJv62a?8fS(TzBP;~;ND0T8v{cygC=WLE^5&WZel8ArWJuo zUerdeLPo*0H7~iSvY;e2MK?D!B{R`lA-%FFzc@L+Ak|u-ATzn7v?x_KGfx-Fgqr78nv)X@ zE;($KN{UKTl@!3fPRcJzNiDKfGElO!(T6zG4qQ%XG8KU`ZV@O3G?~DK(=8TIel7;p z3knL5{4RpX?_giWgGQH%oEaDxnn5|n^wb|!T~lRkbnuCH4L*E<}#t^XRTq)0#yeHi@>a+Z0sF6cw37N zzg;zKDO}(-6slVtYM4{F!ETktuRnzcZj zRSD`)R7rz}tE}|(Gjr2n4H$5pUzVv~#inndmsODd64a&DWW2>*0vbCkEdjS_s#HNb zt@QQ5olvlr#DYxyd~in5%PP*#vo9^mvAx9$cRHx00BOtUfV6_fUqP)V^o9#uJ!D8v zAKZnml0nvj(S+gC2bUH4_Qjc1skSAW?BMpuEsmnp!qU{@lHyy;>8T~RnDVo4v4C7w z1Zu6{Vh6Q8Qu9En!Hp9uP!-PsEx1yPKrM+PYmgXoQEG9K6DY@n^nnUU1y~6oj3^=C z?k@6YU|{G4DgO>DAkdlw{K60Tg&RC>NXjo@S|B(>>LQC6s3~v*+6K5IEIr+3qRj;* z+Z`D@q7IZ@Q1H7D5p_j4x|0J|HQ(VA>(A-TxghIw!193h1!=GXzUU6-8{B;TW?g1C zgvF*?OthG6)!}kSTz-1Z#F_;zE95V#SROFCBJS4d0Wt?val)w-e$h2+#L z!f6nTK-C{yf!&UZ9a$&%E+~XwNKC#WoYKMZkez>m$8_&W-go$AW<*?<)x9XIdzoMF z0*BrWZhmlirpfLG0h+?M*pd>9Q_W0@K+UTnP|10VD;GSDU!0hh3ND9l@st+j4}LGdnw%2NiRy9_EH*cgPf85{UNa4-lYGTq>Uz`($wxhkWafq~&Mhy%k+P{wBg1_p-d3@HpLj5!Rsj8Tk?43$ip%r6-k z7#K7eZ?WViX6E^6GTmY*VrF1qSjq4ir0-XTenx(7s(walQC?z-esNK&i|J~bt?B)>=>iJ6?AS5lOplapFh ztREkrnU`4-AFo$Xd5gm)H$SB`C)KWqgMonowjr#>(Uz`($wxhf-f4gs~V*W7URxQ%T&0=g-m4HHb1`WJnQ65zH~nHHtFIHI6c7 zWME=QWzNcgh944@YPy;c!i_RZ5sETT5stD*5ouwFvP=8ZCk!IWEmUI~=xQj}P($#{!3 zwWKIDRg>u!XOfvoN@{X`N-CI{ng?Qn6r|G`=A}b;{9%bXnJI}SnfZBO z0ZqnRf*=!$Qj7CTi;`303ld8*G#PJkre)@&#^)EL=4mqC;!7`0EiR7F&CE?LsVo5b zjV}`v24LIbON%mZ@h4^GB^Fi2m*mHTWi%OY@i-P2rx+N7H z8W7+g6yoX<@9FF4?i%kJ5#s6>?CI|pd`l8t&ezk|H6${?HMmL&6ez`3`ue%4DVd47 zi3OQ@`6>DNddc~@RmvbQ>*gdDm*{3>7MJ7~Rq7U(q!tw0DrrO;=vwN;YHKPbLt_#Y zg$x`F3=AOtX9IA4D}kmI28Jw_IxqkK|Np-# zJtQMlAtgV#G&eP`M4>#fSRpZ|C^a#qQlU7pEHyMf?slp;|E28JR~2x_w4Vk=5b&M!*2#h+1PQ zsYP%*a}!IFGg1-apo9pQ%uFc;mF@~4@GC_>BR@A)KO?m$FEK^GxF}gasVFlqJ-@U> z-$1`0F*!RiJ+)XLl&*DQ61w@xiMsj8NxJ2!N%5&EnI-u}`bf;={JfH){G6QBqGJ8r z#LPUsg34Pmsd>evMXB+5`EXZ20xC5xIkm`$fq_AZfq|j;5d#B51H&Cz`T3DEBd@62 z9bh|9f6*cQl0)o;=-A7$aTi#m9nx}w8HMTY~zmla(PBwbYWyucxM zgIn=}rtL*;+dDi${eGQ(9~c;9T$w&FFt{`MGJOY8!Au_^)CUHJP^J`+TpCjjNG^>j zA0!8&zA!NG7BJlrQe2|=fq_BQ52Px9DGa14fGGx~3PgQiV2ESN1QWeC*`x?$789hXsAVpJ7YAAJtd7uH0&Wz5_%+PXVucA_tgw{8 zvwo2#f{iWXr!dzrWC?)GLB-&LLI_n1#7kqXWvyXp@I;te8?2gTWT<4QVM*Zts}@I624$vj!os+gy@ox7 z3#6`=gLHS-aA3N-NQGK{fK?Mkyd@w9g53@ht6@j@vxYf^yM`r88Z3!Iq;SCeD8*32 zQN_T(P{Ulqk|m3x2+TpKOkt2>0IOuGVYFdj02R_aez*8C^NLFnb8_Ny^HWN5Qi~KA z7#MDeK+2H#~ZQk{MDgav>Fw zY(=TX@tG;N1oHArGSf1X!RGmaN?BoKk$}X?oczR;U+hVx#d=Al#YKvs@)uMN6)A&Q zpqf;Z{}yv!EK!)J&;)zpaPVWfq?;3tb=ipA;@^ij6_gd2V1%8&A`9_azgQR zMo_u?fL&}x%0+gi8ytKO*m>Kl8mq3eOI~D`yv{CrkzMwJoZc07{Tm#7H$)_6$X^uE zZ1BA!uQx}T7^!V&a-b)f@w*Thdr>C#LPG8b28Mh_cX0i{ z=nbwP7`;Jtf)A4~sDj961XnNljQ$|OM8*J+64?Nz2A2-`ODvK_#taM$$)L0d&R`4- z44^m$w-m3SwG?aM#eFSP4O13K4NMP|MpOu}g1v?*1)M!=n6OqL%qc9Zp?2d?!HQ5( z%Tmi+!-TD^xf*J}3qwC^KU*?$Izuv3EEfYq3=;!GEo&`X4QmQp4O<%XM5Z1d7KU1O zuo!k9u)~U?6pm~S28JT>6b@)*$x_3f1qvIeT`&q!Kr=Grnbt5DGuN;bGgjhK&6UDd z!+@>b3$6^g85v4=VJ6qGz}y0()8K7tMo`tw4^xStYuHn`*YLo?6dDUG!3@bvj10-l zwQRMlW>>E@SYq!yKD7N_cg#fz*#MF$h8oM0|W zEcd&`3hK8M-(s}A#RBS7-C`~+%F$%L#gPnhN^xm!kv{_igIiG$NE@iUT*-KgH77GS zvqY2Q7E4NIa!HXR*sy~9f?KSaC8@c^x7ZR33R3e@ZVARG=jRrbmZZkR4Fk19ia-Ua zCdVxv&mu>-AB)^Trm%qv_2MF5kZpb-5mvCsE!MKcoYK@=Y$^Gm24*p+5d#V@5QY?b z;-KCmID9}YWklE&#WOH4M1e}mC*Y>$7cK@qp$RJ8Q4MYn#AT;fO{`j=aammZlDNT& z!Unevi;FBGHw49}OHGuT;kv-&vY^Hawe?ynwKjzBNV%-#+#%ZFe8bFUd(Ot3EqPaX zT{q?}%vq4SBDAA)Lh=mLOMHqO@*3PO^19xDl%^BZF0)I{2))Fvbc0)92HQn$xf{ab zH#qqEc{_P8i0NJB(0?c(Jh2oZIH78R@d}>n8g3Ug+zu39a*sQcc_AY9vR~X~jra>< z30F80Z*YrW=a#$3EjOcVMc@T)xy#)8m$=P0m|S2n|M^*%fzOSx7}T~rD9!Jz!j_Ck zh71g#pa=0kyRd+ooT&_;F`XzT@Yn??JVA0uIGrJdaS>w*QwsAM7Fd%Z#XNXX9I zXPqLAWFt?CO^QqlV-##c=A>0qYY^XI!HTOMNMNNIJ!F>eL76M9LusNV+6&>M}&rWrUxFUI}CzE?wUyGdVxc zu1XERyuM9xeolUoU6mnm>hx_g^Gd9WGpkbVs_aS8Ql6Pol3`Z?)}E1?nVwN%S7l3z z0bn~J)+go^WF*>Ed6S|Yi~T5uX%lN$Qo3E083~FZwt!t<%Xbs4C&`*{ins4lBv%mNJsA}IhdVKq*X zSqVrjNQeQ^VoqTMwd!pJ8kSm?8g@u4u!g0Uy@mtM=0NC5;Xn-7)Uc;;!dj0ox|SV> zS`I8~IcnIjwvxGEZP+5#8nzUU6mBVoTDB7S_%F5*-x7HHwuUVQ-lnbLfV+#6Kum}r zjR<3j6PSzg7;6}78EcpuJ!_b;x}6uMvdE%_ISW3v431(jk;0q82X_^73O}}CpBm;Y zY{NVJFtby*Qv{?K;5-FbhG{z~iZwuS63jUc;9n0*jj> z(;B`k&;SZd5=y6t)-cv^t`URV#9zaoA`S}DT7epV$lzS9U=4qY1V{`fSH;D^P%Bi! zpCSnr1rOqZMTPUUYk0FjV;@i(U=*yBh+$!1s1>LctQDyht>Mekhsh&osEa^-CkALw zR;X6EhA#^=>Vi-PW}&;Ek%2(iO4SI}2&XZnh{Js>Mj&j(;PEV8BaY1tH3HlWHG

zX-puOrwFZ)hP6=`83?9eiy9_^`HBg9`l?~VpSrQ;E5d0H96m^CPohR53p7*$4sQfe z0}mI1VJ=)FRKtqn7OI@{6HIiANt~XR1M%75A$gYutE;NS!J-S3JzISu&f#mS#^+Xi95`)EDsn9L8oXS z$$KHhVJw(WU}1v8CQZt1LUIRa@B!ukC=GK*iWaEchvhW_uF?j%szy4PK~pDj0TTm* zLP$ntu|jTYNk)E(LUMjyS!z*9F=%k7G%pi04X==#kyw({CNLF1ZEJ<3N`;ivw8YY!5>17~ycC7ZVujM;)D(sMyqrq# z5K(Soaj`;fVrEWeUb;e3YI0&}aVm;&$)&|5`MF@ziWL%zQWf&@OB9Mr3kvd!N>Wo4 zGV{Q?A>&3M>p|G6Ah9ShR{_+ZSFln@NlnhoP0UdMFDd|8lb@!5;WZRHq58oseFZCp zAa^GPa6sgzDS(Ewz~b06B&B0fos^iIonDk*ng*ot{~ing@0nTw`YS0|tgFB~T+? zzqll^Br{nb56>#axu0R0L{kfM;NCF>1d24{q`YxjQ-D z;wVY2C`n4nuh3*F0@b=;LX+_p3&@RNPLT`)1H(&DOY#<@k0w)5K3H>FW=@VK3q%22 zADDZKIl#|dlkpZ?T7FS(Vo4PzIH2?k^3tos3QCi5GLv-_auX|b6Vp>|%?wN|3=FDx zofDHYQgxjnbKJKWwW_2Ylao`6i(x{#jyXB`<+}bwndzB%Rh;gwAvy{H{=p$tGFa95 zf(wJ=0J4 z{g8CQ3eI=8*dRIT76&L5#pfqw6@g}pZ!sp`V$Ux~OwKH+yu}Jm7PnYZiW19jF(>6$ z++xW|O)I&@T#{dKizO+)q8vUt$!7NUY z+aN}AE}SZw*FB?YA=w>XNRi>``6X&F?+;=+)DZlTl)Q287WG7~hu0!q8Gh+!B# zOz9%f==UpT(1hOy3kDv6ew$949=kjILK957D`&V~;#a&OZatCZj-bedkjauWQZETA z-w>CZz;Z*}4!h_CmWLX;J;f7DXQ(Yuyuz=t!K8!bhJffK-WehttTzP3C&|q)>0o;z zAUwfwO7RTS17N!ZO!|RWAywF3H@$vLWTNn)Qyb%fc=l93R*il+>2XERDI_zd7&Ci{gyTa{?obe4oVel}%+XC0if?6F;Hv~ndOH7oQp)_A( zrp5x}*}5y3R|s8@(zz_CyCV6bpkas82Mz`v!3*3n3q-Fg8eUX1+@N+v(ej3v^z`hB z*$b2}i>X}~)43?7vm*Gim|>@TNALv2J7SV^RF|+WNLZ zqQ9=QZbs^5ew7ZEC)`34OlC-3;a0gJBsN`lqV58=6)YPpCg@%kvgvTXAuKkbaH3g< z%MBsX35gTc;36}e7ckCrn`qzR0#yPN=yZ9YskdHsrR-|?i#%!_E)$d|l+7r=At^gw zcBbrtk_{R&WG_ovcY1ZWOi+2i!PC##$vHu7hRTA74$dnadSBQWM5U&CPV}6Syuf9J z$^x4Wf|o^%J2>wM%S^YMXtzM~van7E#|;hv(7eVBmIhw2wL1`)~W zmJ=;!ge^!};kF=dL(nBt_Z>Eug*_ndRUu=HfB4vrf#>KzhUZ-N&b_Rb z2iGKdkwf_bzjy~fcn-Nr6jV>c)@y;M;BqpHOK!1b73b&OVks?7ElLK>6+s)k44?uY zR2+W}1FuOcfr(>XkO)~>gl!7Bh6&bKu4S)bu3^tYwgYNr8AAnQkpv?H_6gh?=5)l+ z1S7aB&kQ1KIZ8n81Dk|ss$T292ER1GWK?W{GN zSUbSXH7p=I;Oe+)xEh#hID#2!xUdZ}fmSHNZQ@R0tKlwVsA0`EXJ9BYs$nf+OJT3! z2ANmOohM!bs-nRT&5{69C`1ZJ3Tq8Ftm9eBUBiWS=&<1N@kgzYO#$zh^`XX)7Q_*jCROOu~i2rRL>M$)nfJ7Tdc`BiN(c`RYRQl zka^_Plqw$8Vg&?`Kc?6o&WkCw|HWEblBR0`TEm>1vy$l+2dsN?iw)8hdkISFFMs|2 z|6fzE2(*}|$R5;?VM{8?FE38L#U2lybS}Qd0$M*>1WLcRxIiuc;u6qG$y;0=A-+BV ziABY!MWA*-e$FkHw9LE|@I*Lxsn9Lv;?ksB%*ClCw>V1jp}N?hi?CV2YnwEAie`Z9 zTf=u85Et^Ws zNzJ{*l#_Xj6C7Y51ByW->BwyfNc%ycv>+uBHYE=-y-FIX^?)u3nlvw#2QLwD4G_p+`3W#NDhjypnP6Ury+ zcCbI-7447hjJ+UjvZ4B-w9{o?=MJU^+`JuDH-sfRd>)91O?R8tIiJYL&3BvWc0t*6L(vY)%QCJLIB)Rq^}BVt zO)#I~d6h@)0m!^30;1FTCi2awSiv~6dWGT4x*hB%*scipUkC`i5EODjAoRLG%te8i z3$ZDe1yVa$LDTmNTBxgXANf1 ztOXScShgDG8aBKIEY`7qoCPd9Qc(d)K8V~5W~DIIu!9OKBvr%|upBiUS@4zMV1vL! z3VKn>S;N`DRKp(3kj_xcg}wNN72Ylku^J2vwcIHzHQZQ>UDgyfSTR_}P|VmPQNx98 zRI&y>hR(>)qs79I!dS~w!{x#d+XFJ4u-Ub|H9R$}*-Q)!Mdm3iHN0hv#Vjf8HN0gE zMf!+^mswI^52Fw%94Txyyzt_jH-)o?7ZkR&yfxfd7h1B`@WOn=$dG3awl@Y;jezZA zEYc%jA84HuvVGj7*jK}o!c)b|z);K6)5n5b!OEd{3e2hDfL0}tYK0d(mk&z!3=9mQ zoikDlwd^%)II0ZxOnB7~Y90hLXbM59jG}D}3=CD0diwgs1&Mi>RYethTB0r}&lPP4 zEgk}`Gp*u;3hCxof$9i2FQ(YOic7Uv0V+_%8&hl#WrL(ZwF{K1n-3nkDB1}!a~Fu% z4I=h|i2b0wBuMo~(E*U?K@f2WM1Zn;(P0ql2#7caDy+HFQ%jOFGILUjQu847MFdC= zyuS1}h;;%)oCFc4LB{ieYl)&WAOXY)Pn{ILIw!pGxJhXD~c|II)5 zC72i)7>ei6r+#=KEN!eufL4483U{#H5K*`; zqH|G1=bDIKhszCqi5V{QJ!X0=2w#zOS;p`Zzu^r5(dj%Bd1i!M6;S%X${?!$fsH{- zyo2kuh-8P$4GEd~95XoWf|uQ zoUjTDMduX(of|x2GZZ`hJH0-LGKfljkpOiZ@m5s$D<>)B$_c(xOCL1M5~9fro@y@w zEf~ASUY?p%oLQ3UhBD<28WaL$;?J8H2v=TNps^=#VSpg;EfX!4L)wA_YLFqcfmvDb zC756?n1EFUO^is>(u_4spq1)1te~mNHH@o43k4V$7=jrznfx@_ZgC`*mgE=YBv#&H z$;rjMJ|Cl{n8B#)ff z5UVlu6H`*a&bq|{8Y0zXK~8p%ws~>UJ<$4Rkk7!;%)r0^Do8;czt1h`>z@%_O{N;= zq9DZjj1g>_6|b!sgaCqoI`R-{fWcMUgUgG?D?5lael4Ob>(Fw(kU zY@10Y0RM3`CP^mKql)BjqOA~WI-YGNL^C;;vH5Q;}6+W6$6)Wnk1Tm13qsU`8?t)KCk zd1?8Y(8?LKy9?~JTO6SL4+@QZ6MB1o7q z^%fVx+G1QaGY2daRS6^IZJ3}DC|6$suXTRHFEK-;yS{_vCb#e%d4&s#kr$%luScg` zj83_dTK}1WA%@Wrv>`#kiRl85%m*e8UY$GAnk!T;OY2YIxFIZkMcL+}u+0q_7sO-QbtJ&aZiqU-L4*_5}{@A7A(xMCF%oUJ%y$ z#K6p}^MQ>)QelDManVm@TT2x42YI@vQEF}YH zPf#t0l4Teez}b^|4I{ic&sxKZZEOsYIYIRib5S5l;?QI+`VJEK0U~~antyEI+5t@& zI1Ls31(pAx(hO4mLkfR(P%0=b%Bd1UOBtm_Ij*3DVFFGV4>)+R#FX%kuoIQwXo|#$ zCP=9+i=$L8O3lqLOHBsNwZQ_0lYxN&9IVs8Wp)h%z7=|m3?*>A*qRQI{zL_1Epsgk z0hQq0&$X~u{Kb`7q*t1$2hx3uvE~*#Xyz@w3-ccFhWjdUbZF|I0N5e&P*u=XWLs`h%GO-L=i4522JHb!r&HbSY~Q@ z@hu@RH!&wZDJMTUJ2fRfsS=#&!KJ}1R*+wci$P9=6aXL+QV6htHKtYxB9#FUA#YF- za0^@neBeVauJ7oYtdCw9y+i(@uIB{~&kn8&qFQ$Z#HVvlse>~IFn@c2yhxgj8Y zLr`jl+XA;0!3%vZ2pFRBKCrVW@qK1s5#{f2{m8>0AbP{Za=X_?uLEp5DlVINTo6!N zUvyw0O>kw@bSkJb%-#S0vYkb(-O zuLG*J!ATliYonA>pnWf(;{5YI@RUaiV=WW*6|5=nmS)irL@N_pS%qj}V%utst%N~r z`GvJbO&J&&Nx5WzMM$p(>8gmL?3V#WFk|d2eoh3zJjUddIwF!XTzV>{MnjWGH4V zXJTZCWME`qWaw#uw#mh+=7U$873G(fq=H)E;MHIy`3fniC89V)79Toi(A|FT3O zWrGU-Xz(!I2QCINsSd6i+~yW?C$8nQixhok7a}GXsm1&;+&* zTnr*o(`_c&EU>>MY;;3WeS+6_K?b2f#*ab_0#aYt7^D=zR>WVFG`%iqb5YXfhJf&d z)EVImk}rsAtq9%Vz9alV@y^%_I^Lj>wva2zHWvhJKd>^}@qx$nKz7-FW?+_*=@Ku-CFjN(UDW)Z#*49vWIAGjE#Rp;x^)L&t;LhZ7Y;ReNvQYJSfm9IbivUMG5CiF3FcAQZA&XU6e@w$jS^F?qKHR`mPOf>;=JqU&WyI!9g}BE>~gZ zqr$ANGVCamKcIdFxT={1u4?d4{y-YMwQMzv_<9l8nzu+56>AM6s2M87P|H}uSgcsX zTqKWUI|aN*$F>a`)@ZC{1Z~;|&s_7>uoUrN+ZJ8RlE;+7UdvJgQLDkgP{UHgn!+&$ zwAF>Fh_{9bw4DXiXsux`G6by-NZ|tU^0aH1i$rVKu{Nc-K<8AJlH zXKLWv*+KK>DZHTSp;)el1Ft!taSaqVFu=FdLgv+xHifX&z^mU1#$rKGQ=gzaID#28 z`Ky$j!Q&j@#l%J6#iR;}3VEsJNIe0)B2bxJ#iEy#Tj2Nd&;S4bi_$^G6EhGjDHGb5hVCDjxdlLt3l;9 z8)Q}kJoE!DUcqBFi7C06dAF3}lN0melPU`mi;E%a`ikT8^PmGhDVd2m`Jh#Wr78Kh z*dXq?C7Pa^ms$jxO-}?b35_qw&rZz)Z#jn!?1DoCJU9gQGg6p<_N3q9M|cN3EDElv zia~v6NI94NaX1{0mqw38>xV6}Z78eVs??B9GDy3E3OsQXg5FRrtO#F!S<% z;bIV$nd5jtF8;Di!eybv3p|NmxEKT_Ks}J_0xA~;RIUi9-4L*!z;j)|{vrqk9nild z5cEJ&^}3|iMMC)i^s#la3SX>g;xgj7moqr<#WdX(O0_GP5 z%&!Poe&Avdkh;Jj`GuW9%5a0sj{3`z{+}2ar7Ug;%U>5(yC|%-p#HM3`3GhOUhxlX z5VhcrMKbc(5NH$$T%xx@W<=m}_=hN9r4y)B##(|irZB)7oQw=eoefZD1+5gQVO)b$ zE><#VGW*>UP6Vw-PE7$HzL1z#8K0R_tjSp902)tXEeZu?1yHXMEKmf>8Mn9~nIb+l zuS}B(++hVv7K7SJumlJim_lh_pbnTG0wq4s?y3fcCqiOV%BR;)tiLRz-obtYa=OX| z5zQ4QS2zsraPULc>n$+9#-R-k(<*gPqY$=C4b*N)1fSRk6#)+hgN_6&PDTy@(8w1! z@b$psOZW?VNOg*>DotTZXIR4w3vO)D0jkQ@u)tK*g4QyC@+VqEq%)+jBHHV<9O(?T zoZwXq%ta#DPZt4=4S_~=;N$t6H7q#Qve$5+sO73*s$eW)0u}y{UPL+rXcrS$gcB~p z0#(BW6G`Ei!weetNvvmPV1T#tLqNM7ax+W7-2>3jJ2jjhHxN{IWv5muXcU(eXBS|LIjIT+P0u37?5xDH#NywZyQ&EitETfIF}y8L7EQLysWkpe-x$ptY^>knK(JU{gs< zJRn0rz1|`Ph#?9PLvRKXbj%YqHG+met-#}?#X1Tg59%mnA-q=vYBPmsGTjo+%a1Q8 z%FInHs*Hy%4Y?&39}kWf@RSq0kC>5}S_B%ptkh(@#SRTmO?F5d1JqBx#hjg5d5f(g zHwSbY8VgA2Ew;qulFYKyTU?oW8L35?C14qlYi==R6>BmV@q>EOmLS54k%2*z4XH83 z1KLIcpAv(f&kD|^5XXVXJ8$vFgXRH2X#;$6Yq2IbqzW-%WMH_(3D3UZtsU`Ti`hVe zS;a-hAQi$;e}D{tC9Ydypa{T>MX+OUNrDW4L@T(_6rWTX4>9DHcvdl1iDJ-H1SoYt zF=U`r8srX05rjGvM1IutV64h8>dP!7oh0_fYnM)#87Zj~7i8$;?x*;TSNyy}a ztjQ%Is~t=qQ77_~LETnZT?eXv!FBE%R>Dg_Aa!mnYdS+M8|W0F6qY$mwd^&FDXicT zJ=PSq6n2Oh;w%GfD;W_74AycWW@=zvtXj?*CKrYYjIk;V47FTH>k@fjjz-WmTq&HO z?iQ>8hP|^1lXYQ;{SI9Nh-K|!4SNbVvRSn}H9SQsh*NH{&8*k(U>i?``2=QfF=LNy z4L8>LAb1D2mN%WDmXAQ22i )~!VB%1_|~`N4%DHj#m$7PP~jAH=U=PZ0po;I2Mn z4@g`P#IF^o;lSFJ6o9$Ch_OelhBXUIceMttrdF^R|!jRagVJ>4VX6zBD5ry+1>sN&#qrff<{bI>X;Pdo&7#M2BYQ$

A7KR!&7lwWbsBSq1hFS?EH%LIj z02V_jeAzAx3`N{E%th=q5{Qs2Vycmt$ke02!cfarE0NAnD+w|cbTVPBRE=bf6vPzp zT&g7KWWpNOEYOH8I4vNE8p#yVHDa(-P%8~KBZ`5cRtiV_L(PS`4yMzEA=VZg&QN)1 zDiQ$Y3{aTV%G9uCfkrS8R)bkJ0yQ!<((t(x*%a{_nH2Cz7_%9{Z1DLPvl-{I)X3Jz zKyp=z)Es7*|7wK5;cCyq&=Ug+SLkVkOtoU=kaG!{YQ^C!iE;)_X}>B##DULxkUF!9 zr9?NYxQZXN*Ha(SVAW*0C0-Jr3_9}_q7F1vQIwffT9OJLVlM(UHmX=lbd!sVt2n`$ zK^1zHR-A^Owth}#lD?j{W{rlPc4jVkqhnHjeo1jjQDT9fc8nfKrKU=e86yKjm9V~k zNwhzmj~ZstpM#5hfES|28~j&f?8C?MW6+Gw}ik=K(O~9O|iU^Tdd%t zVWCo>p|W_;?iBDmG-x^TE#{omyj!eAiFxU%x5U8uA$|hI1oTYFTcQy0{JfIXyb`#6 zO*wGm?H1(ReQ-d58;Fje2BH(Fy~YhWPd~IIGpG2L2)JF0-U<_j1x#@~$OQ1T>n)Mg zisYQql++ZEGa-{CsYSOqL6-%97E=}9Vl2DG5A`M}?c{+jEMNicGQPzH5e6**yTygD z5$Z^gZt&n5ln)AzTa1~Y({jPb;2Pdy%z|@_Zn1&RsEjv+(njF1xmzryMLET{xFM}b zuy<|=VFX$6Ee@D#p~nN~l@x;(nn4?tI4E#iv&a^dE~Sv#lxVHyAE0*RWbh{4J7Th+ z9j6zROfQO=b#OnBSG>R>bHmEvf?xbaxr7TG(l@w8X0To2mb+o+dLcOOqEh??9{DdE z3<^r~t7cYR&yqN?t*>9MeWGT;!zV=ZVHPpVOh?#kZXm>daIRIt8K0* zSlkeixgo1_UDn{DticBP%d(CWxWKCeCUD(R)L1UPPrabqURj5}GTNuS)2B&}2}GV*FyjAR<1YYO4JW5sm92`WHp? zH%RS>x?tdORmAg?Gb4ja4C4o81|jh;L5vJS;u8wzC|{5>x-4aUP0*yn@rJne3df7$ zdL15jM5SgJ&Pl$YWOiB3{Fk5aLRsQU{>Jzz{4OQ)WLFFTED~l29Ll5 z?*)t#{Vwt-b-H|DW{@#>Aggg**8ZZb{Q;H}A{S)sFU$H};E;L@QVk8%1==eT7wTP> zGrT5hG=cGknBoG(iFpeGFNV7?)(vLJY--2{#YQmWUbtS?Gg?{GdKalt$GvQ*qe z_77|f8U`CUE~{JausGm<$vWhMbm$Ek`j#qjzg{>(YFClW@{*+tVmMQv_cI1+hHHsoCTgJtYHK#Oaxc^ zNJI^53L|I?5PSy+6Zk|q9!7>5Mr;=aq%hB61&v!mZv9AM$_AaH%$CAh!;!)UY6s-8 z*Dx2cg0^cy_%$p=tTik(94YJ|Sw!y)|H>A~nOrDm!EqMx*KlH6@lwoO!&%FiCs@OX zZDD^62dte09wG+~RwMZw#4M^qEcwT}ItFwO9Tt77K_l9r0dS5Kt{TR8c;7ZJtcDSr zJF%^=N#TaOjtj?@U!D^9Mqcc(2QvZY9!7=~Zmc~u_!)i3uB~Cjwx6tsr-m^LzH$W= zN)Q|jN)=dEslfW3;8cS}-)u(Esu*nRR%SEK1&t!}RaL^r>L4?Rpf!Ksq@S4zI*_LT ze0C1%8WYe#MUc70Vuj3-V#q-?pw$b@fI6ee$+eoVQxKJ?HVKXA(q zd_5;N@uFx@`%pNwBD1&z^`Prp zyr9NOT2W#;=*aM5>?2-0x!`p>kdg^yQx~#CBohNeG3ZvJ28IuO3^Ho-ZD-ov5S0Yg z`;tnRB#jp2+>lVXBw-F(@MnHe#rz{Tn-EtA+Xp@d9-#@^7rEsY=v?B~yCJX8;WokI z5|7MHUf~<^svyoq9+{im{5ND3JKQFib^6_rGu@KDJ$qyJ0sV_+K^H=zF3Uw<;E=w_ zEq6iP>bkn!C3U+Sk~*DU4ZwA$D2Ppu_71w`jjzm)#dO1_7b|iq47)5*jPC z*6Xd*yTWgILs4}C*HqA=4n^(dd<*%mE0|nVFxe1%S;2Aw?+pQ2$Xw!rpf$oPqSnW* zjJ>RBeMP|LhN8-HiG>m?bT2DfOyHWrcY|B>I=9RvZkZdxve$*xFAA$);8DN9A#|NX z<06N~6%MT%>W0_VtuL!v?})l?8*<4uL%QSV0|9d~U;fBqm!5 zXge&{Vjgt3FsuNa&5**C!k&d?AvIzn&TNLcERf}T>C7p-YY@kKved8?i6Wihz=Ca| zG_1%CW+(xz*aDZ0*j9I7D~4gA-^7SGkh6v{g+HCChG`MwTDCrhTGkrYVmXRTh7X!$ zfw~l6_aTTHR?x=THA1j1zbR;WJJv0f6#J@6WeDh^mVx{?{ZC>=}6(z{$G8Aco^n&-*g2rNs zDnZ;vc)<$FUPa)tAHF=VND8C`v~~x)2MB!h6?n2jlO5c>E%E^s!5qb@kh1a?n=jbs z;MEtmxQa6p3sS*-deFHJIjO}U8=###aA)ooAGq%fQCD1+jyf+6nk;}zHGzs!W$>bm zJCO4eF39R%6g0RlXnIl5^s=Bi=m;dy8DjJ0X3AaUR$t+^-gl+%4z~l&C&VsT2VAfU zysQ&+T_^gIPBd(-9b_S#)kR6G%aS(NC7mxyI^Pf!o54JzaDmuzxrK5Ym^TDpR@2Q~d>=R%#Kb>vGDx{Ff|lcf zmdJrtM%)osSRe&C0_n22(FFk`q-}tD7lrgL3mIJCF}NeDwxDc9#RXC49U7NJojbU0 z@=Ib@$Sc$z-x)t6YK8C)$*a812TE=Ti%++lXgS&XJ2L~H3*&WO=S#fKzrY7p98nW+ zWneza!0O7$j&frbs3ZkXKHOqvU}zVc4mu=&Ig_E51+>)fxVVJ zg`<`O`(kcb9sy4r#6ypA<*emGT5ADX+kwb_U{(re4g4VHTJ9R|35-S7HC(kk1axuL zu+L^p;jZDB&6vV7m$ilm+ad$x+&3V0wN zYoi-}R4;hhIA1M4qKRF@TZ1TV1!@GaO-{hV6kFL_%ZB6=cuYK&}LopTX*}osNTTVglx-CdL{;Y?Bfx@S|dDdGaVTpBdW( z17dg@+i}V@@aY^J2R^`EhdfC!fw3pLhO369h7;5|o50wU#KKU+?84A5)GwUOoXL>P z6w3`w(V)YLS!=*kDm6lrnR<9xKo`yk*9vusrHH49U>n#@k!WG)6w3lNVZkAdAYftX z0$+Iut5HD<=W9he#L^g3BwILYMUmoK1EC+rsu8IXMI7Q=!;;1X9eif46|NO3XV8@L zt72C+c64-cbgW`mHg`5NH8-nbS9UW4K@h_Y1VCymj9pDkHCb;l8s1_wy2WUGi_zp3 zqiGeNGU&cdM_sqrYBL>++A2fPL6i0|8Zjx=hC0TzI%u?py_F6~gI;X4p^izdrhSZN z6<1ucMzo=>X{@G76|07Qre<6fvr0|eEk>1Fj0)hxh^hqR@^!(74eG*G3YVuQL5Idc z5PmFJ=`n|m5ghd%NaG9s#r8si#7dVGIlmQyD=X z!M7I>+bveG#0MG==wvEmC}Qn|UTp~K-3BwPWc1Tyy2T1Q3bx=DYiU72YLO;0q&H>) zs_A*bF%=KmN|u?IUJMFc1%(DkUCvfqnv|4URHYjZzsf={9#3dMlm;qIAklkj1p!5OSv~r6%xfpy=TuN#MZ15kl(+u9!xy9v_m=crUCGlt^}5_3{ZN>XoeK?lh}F5?8>bQ+(LT5*dD!UW~DB2btYfzPJm0tdV= z=x)+m{K>_|khB#KIpLEHV$v;E@Q^;ZC3%Y#Jk)=S2dpn1vfc-rh;Q*h9T1;anwykb zbc+>iVbN5OAE$r@&p`C`)QFVtooImM<_efRg(SF^LXtF!4Z8 z>IM?}$jt^?`TBtmvado!wS)79sAmV)4JpO>x-)g>>vwu}I8PA0BPl&!Vy46boej*F zB~3cKZt+XrP*R`3|3qAJdc~xQO`f}|E+}}N@W1Ype9n*QdSiQmWqPp#M^?-}&0T%+pFRMq)^qAqg!0?WW z!3MD%qL)?dXSm+b)LSpPQgXHQbxo&>nocvk?x<@nuUu4l%KlPJ>ZSC;3x-7(O6o4F z*U#X&DX)D;N$a|j=|v^e>q-t6l^iZBIbD!(x}jxuUCZX8md%d9%Ubp``Jc$CU6(Vw zC}((G&gP<=&1E^e3lerW1f;JEC|wj#TH<4yBvDsCsZu6smW^oY0+8Fkqs z`hs%IHG$X%${G{6XEP1QW3$YoOBr-dA9|%ayFb3@+xu_g^fcLsX&_#!!D-I!-l|wH}hh7v2?O^@F!o=y$ z2pJkE>nxj)IwNdB@MV6@71kH{%`R}5{rt?&AeqGo-b!Ocevm<8SVh%d}Q0~KJk2m-v=h$Dp)$!sFsmByUT zoWin(3*Hum^z`8edSM%K#nu*tRbfqxHLTbMRkPqrPLN!U7;0w86Ru&v)?%w+OyNPa zr)pVh7_hb8Kxg8>d;o6Wv(&QHuw}uom}&7OdBF2&4$6u)szo zYFY9OYuHnS23 zOIl85f!i&{iYitckOQhzz!Z1^vaM1HX#Fpq-ON`8mJ1 zUi?C&`B*tvq5HohvjF18j@U~h=4R-u-rk(3XZNS0i>2BSmXex z8L=Ha2=sxAfnT_T`3AS(gt*Jx%6JBKj<}t$xa<;gAvElwOZa8Uhz_qCB68P7R4!uzTO+Bug`d&2k zy&~=Rg^fW@6@0$3{6$&I>#}wiW$iA@I$W1^zbNZ|Lqz+Ah~^DZsTs~o#IGxwTvRl< zu4s8t(ei?b)dzMKPe!2+91K#@A2=E0JV0YbaxxRRK5{WgDBY1#x-O-AQA+o^l-Wfo zv&&Kz7ep*>2+2&>o2YkPNd2Oa`U>{TLI$1A4}`=Z?c)V$D>8O)To!WdaDE^zeO+Ad zqPX6QvJJ(T#jQJeI+#1cZ-~lFkDeI4Kx~ERWl??5R#nj%!l1!;AyH5}dq(;Nb>9<( zmxTg5op11p&oI8kD|Z7S<#QtOvQPj-%H$HSJd%|6iNMQ3{vFOw_{FaCt6bz)SrB}K zNB0J=%#55hA=h=CFX}p9lykno=c=^hTe`iq&`0x{KZH5}e zfg@~0nSo`C3u5^r=-zW|a|kJr3)2K@*s+Z;!D_%@(5cT@M*3m$wH!!e`G~1tPQ>Ec z6qXi-8cu9WY%xbCz_lIdDlJg=09*%P8$Cig_nD`L2ix>2*6|}&SgWNd1!)H+@%j-9 zN}+XHEiYN-!1t8G+*8X}!&k#w#SL24ix`DMG8-|m%nwop*T;>+_gGpdHC#2^DI9Z< z7SQ5op|BvP!?9ix#*@N{XkTG%lfc_Su=*MttE{yGC7@jo;8-mIZ9W6D5X%SPz7niq z#de_==ydBEK~P%&W^OGj(&!bIc0&y-=zxe6ffCUD?qJ)pOu!Th0WuM-bs^|?iwCL9 zC@vBLRV<*I4rQzaG=Ksg_5qm>ANJt~4f`OPJvH!iA)rG*f-DS`44@&PqKTk&hm7D^ zXHBM}K9C)t6V_06^7Vs8q%@K0C?t1b8T9!Cs=PpF2|)&ZWNkNktZ#$XlC1#1@curHjC|K4SPp22@i+mOX+E zjV~@KN=?iKjmhPLn;ExwKyx(k76IrWh9Xdd{uXOVX+chE5h%#Or+!10XR?77A!a5) z)@QbYJO!TBR|B~K+|~de*9vZbfVv(bL#s|=*J z2B=93njHhVxM(q`fyA7dn~n&-TP#KS`6ahFi_6kIz*m>v;wUal4+q_7dW)~PEZq^b zk-8)ZbOZ-vM1{GuD6<%JaunL22yAQdEpBKafo8p`#IUD}=b%I|6WoG%z$bK_Pw^t3 z;sUi5dOI{O^Er1g!;S`zz9^`9UC`{JpxK7<%YybDY|uHc84wAFi-HaZ#4ZbZbg)wpTdp9tetF7u2{YsIfw9i|BT_ zjdBNAE(C{PF^srw7=O_){z5|fWy6fif|;Fc9n2kpPxxf!L@p@3EUSB&Pp^ad2A^Pm zc4zhlDg6tE9w&@18v0%4^Y36LuZ^OB+(v<%RG5>QR0P^u1{q7kC~d%l7gZGPp@mo6 zOf^i{8XqZ4h)F4ULCcIoExe&p!$ie6~;u2Urd0yft_O17Qd(WP%w|II+74bdIPdm)|ep z%p$$y{JgZx^my7hnuYF(GTpzrLY9Bmt~s1h07h#RKZ5rRJ4DdU67Z1qC^o$)HjrPakwWNYMw- zc5xoGZX0AfAJ~DnBwSqG97BCV;(a`wf*gY)<6Zq+0{lJwLO?effrq1uZ?P2Q7nj`P z2F>-Cg2sMRQb9K~rKA?$V#?1hngS|HLF?T$S&P7TA+Ui>F22R==^Ow)!U62ZqK%+A z4A6iNxCDcY<%)oP7Z3FvbfCCO9;x)grht=~fuVRV`24dce4@~7cahKFI-lu9KGVy5 z<{jXJ5Ns#fUQl$o;ud#VIKG49hO``L0n`fl%hHw|Y#kLBIVA1~OHT(Yve{8_QPKTG z+7;o@4vrh#!q>UwFLKK-u~=@m(C)gj$wg(8OWYCCmI9 z5CbOLU*J)CAR;{@;<~KiMOniO!bTT(j3C_&lrt=g6U$QJo(201`NZa;cc2qv@V;b2m#0GqwRp?CU*Yxdh%^ zW5r<;3rs}~YYOWerdl?{6g9RSox%pWs-=c)4g5$HaMuM(PDeUNjL3mO@a{Mf#F_hu zr9p@ti!k>#G1jnS>p;MKj&HyayhtGwI;G1|%ZcP?EN6<>M9^852sVrbH$euJQOshNCk;ru)(mXg)9`j#R?8s@Zv%6Vr$57_+>^0h7j;lZtxC0 zO*Y7iL-2ZM@WMXuurPdG^er*S;%~?;P4Pvkpd(m|Q;VuVcPZ(CX0nTK@u5b-Ek4vB zu0lDV9y~~^k33ATe~Zx`yv|Wm0j&vCbOjWQS3v}5X1xg1DJr@K;$8<4H$cQq5OE6} zx~{O3|G}NHB2a4wGWic4p9U3!kY*65!Y;}O=>sn@KLBbPfyT&+tU+R0AObw)4?4*2 z78huxcWPd8eoAT)=!Ewo@RUFJz-U28ONtd7__w$bdrXRp?tmO50L^Oguoh&|1CZIb zK?JCs1zGD38ke}mT$EY}i3re9RYf`=CE$^8&`CnKxWQ=^a`HOpChE*6zAU5+ zzMFBn#YBr4p$m*=MlLA7D679gc)R3A$sNX<@cPKcAR>1|+IUO&_UMh#2c$2W`d&8;x@a17*)-(3Y4kuWqVAG8@H^grk^2uNSxkb<;(rIEX^pmCba zgJ_1RHmyg|7GbbVF>!xLet>DCjiXH;Dj*19ficv0AJgV_d+%fi+j z91l1Iu5+kdW)Ig}Qdf%ffyK8fGSFm3&bUz_+l_Lm}i&3rzEJ-acDMr~V z1j@Of9P$}720WbsG2oANQztzCK?*Jbq_HBf(V9%)q;QL^C^atyydDxf#=@MNp8_6k zhOUBy7F%2(J@Lh*nI)-JqDV1<5RL*x2dL-V!0?1$tiP_a?t+}bWq!j89EK3zDI%9q zsd>evMWCCNa&zD_Meieh-mP>h!88-7dvM?WHW^`m>)?}|@Q8q9z@Ozm8%J4a$>-OwGaSGeqQ(Tk` zI-a9gA9QhgVtHzDer_t5jUu93o|*(wpjT3o=I5u$4qC14=H{l!3U1pY2sdzpUy}(+ zGlG{@YqEkVH#ev#n;#fJB1GmEM|?b}I}{&(iz_}p7rbXDKK>R@d_3p^A&3lQeFtk1 z=n(WG&{btcS3thG3nJcth<_l00o0fk01=?OO~I$D7J*KcK+R zlk5g@LDg!}JrL_HhyXQGi@t$azd*!a5TOhrKvQ_&7%xf$*#;u=KxLr;GXp~l!v_uq zHi3qa_Nd0FPYm3GTpz?31jT2BeG%toQ~e~7$jB=3S(2Mg^#hps!G{^H`htM^inJYO zS6H1sGD)zCer9H1b7uSiVt%kfQlz{>Z9~}=R=bZ(@(@M#A3&@RPK-#3bT*hBV7m|y za)mYYhON_$fY2M3cAr?eS-C)_hB1C%;%4RgAcdsCa0lCgunS=^7eZq%q-S4Y&H2P6 zz^VgMoy+(E#QdOwq}pIZ*#Wl;q0tvYVlJd*U181s#Ka6yox}J6#Qea8q*{MN+5t1r zlnHCZMm21j~ic$P39C9~c26mFrU+V>~0P$_FRp zu=fLbCn@7XQP~yN@=r`^tYM5GcUCZd0JA>@Fbc5Be^Sw6HUAKS6w-pW7X<7Mgk1=V zx{#7_g*EddlL{+0NMjb`2N3gv53*v=eX|#0k}hNxUZ}4B!oa}h$OMW;um(paP&{&@ z#G|0`1p$*CW+&J#M8sTSjs3{P!Dh_U|hcy_i%$@NAnEgQpNf|6f zeqv%|H3Hdb4>HRL#VF$)Y6r@$u=;&uVr5kWsqtq7Gr^S$I3H=+6-j_{7pTGj_oQ#J z=j5lSXXd3tc3)2g<+W>|Uam0g>ODQg&3i?l{_`zfxD05Z;udp&r%w^67AgYGycdD$ zq+2XG6}dU!>EByypqUjj6Ua4Vpf36?mfXaWj3UtLm|L9rDf#)}8w?;71*q!2#R3up zmqCyv_L3}t#FUi$ykfAfcu*OYnU@aQZ<(4?te0674_@vD?$LvK)VE}i zwIJ8;`T04;;Ohf#@q?8h`4ZHegxpC0s;O=XgXJMbWiiMmP=gM%k?Ix~Sf&JQ6lm(| zmIy*XFE=wc6|}^!7<`-BEdeB{Oz{0?ps_{BoVf~E4(cyZc!6vI`3Jm`zZkN{zX;UJ zxg`QV2?Oj?#K1%mXyYsRMg;Kel23kmdTLS8e^5k&Muv;PLoJ|PFh$_{*Bca|pfQqL zT%fgxMfo{7sYT%A0p9ikNiCou*jpT+gEv5{xQoP@7(fL+LouiY^nsa?k?}Eu;B5xZ z+YH>d8Teof{@V;vw;4q4GiYCA(7wwccAr80E`!)}2KD<4x|bPr?=v{uWw5@_;Bt|{ z64f?V*t~qC`KVhi!T~w+>B}yM5fD6l>f>AVuM`{0OFvv#{d8T literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/controllers/main.py b/odoo-bringout-oca-ocb-web_editor/web_editor/controllers/main.py new file mode 100644 index 0000000..0ca8ef5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/controllers/main.py @@ -0,0 +1,868 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import contextlib +import io +import json +import logging +import re +import time +import requests +import werkzeug.exceptions +import werkzeug.urls +from PIL import Image, ImageFont, ImageDraw +from lxml import etree +from base64 import b64decode, b64encode +from math import floor + +from odoo.http import request, Response +from odoo import http, tools, _, SUPERUSER_ID +from odoo.addons.http_routing.models.ir_http import slug, unslug +from odoo.addons.web_editor.tools import get_video_url_data +from odoo.exceptions import UserError, MissingError, ValidationError +from odoo.modules.module import get_resource_path +from odoo.tools import file_open +from odoo.tools.mimetypes import guess_mimetype +from odoo.tools.image import image_data_uri, binary_to_image +from odoo.addons.base.models.assetsbundle import AssetsBundle + +from ..models.ir_attachment import SUPPORTED_IMAGE_EXTENSIONS, SUPPORTED_IMAGE_MIMETYPES + +logger = logging.getLogger(__name__) +DEFAULT_LIBRARY_ENDPOINT = 'https://media-api.odoo.com' + +diverging_history_regex = 'data-last-history-steps="([0-9,]+)"' + +def ensure_no_history_divergence(record, html_field_name, incoming_history_ids): + server_history_matches = re.search(diverging_history_regex, record[html_field_name] or '') + # Do not check old documents without data-last-history-steps. + if server_history_matches: + server_last_history_id = server_history_matches[1].split(',')[-1] + if server_last_history_id not in incoming_history_ids: + logger.warning('The document was already saved from someone with a different history for model %r, field %r with id %r.', record._name, html_field_name, record.id) + raise ValidationError(_('The document was already saved from someone with a different history for model %r, field %r with id %r.', record._name, html_field_name, record.id)) + +# This method must be called in a context that has write access to the record as +# it will write to the bus. +def handle_history_divergence(record, html_field_name, vals): + # Do not handle history divergence if the field is not in the values. + if html_field_name not in vals: + return + # Do not handle history divergence if in module installation mode. + if record.env.context.get('install_module'): + return + incoming_html = vals[html_field_name] + incoming_history_matches = re.search(diverging_history_regex, incoming_html or '') + # When there is no incoming history id, it means that the value does not + # comes from the odoo editor or the collaboration was not activated. In + # project, it could come from the collaboration pad. In that case, we do not + # handle history divergences. + if request: + channel = (request.db, 'editor_collaboration', record._name, html_field_name, record.id) + if incoming_history_matches is None: + if request: + bus_data = { + 'model_name': record._name, + 'field_name': html_field_name, + 'res_id': record.id, + 'notificationName': 'html_field_write', + 'notificationPayload': {'last_step_id': None}, + } + request.env['bus.bus']._sendone(channel, 'editor_collaboration', bus_data) + return + incoming_history_ids = incoming_history_matches[1].split(',') + last_step_id = incoming_history_ids[-1] + + bus_data = { + 'model_name': record._name, + 'field_name': html_field_name, + 'res_id': record.id, + 'notificationName': 'html_field_write', + 'notificationPayload': {'last_step_id': last_step_id}, + } + if request: + request.env['bus.bus']._sendone(channel, 'editor_collaboration', bus_data) + + if record[html_field_name]: + ensure_no_history_divergence(record, html_field_name, incoming_history_ids) + + # Save only the latest id. + vals[html_field_name] = incoming_html[0:incoming_history_matches.start(1)] + last_step_id + incoming_html[incoming_history_matches.end(1):] + +def get_existing_attachment(IrAttachment, vals): + """ + Check if an attachment already exists for the same vals. Return it if + so, None otherwise. + """ + fields = dict(vals) + # Falsy res_id defaults to 0 on attachment creation. + fields['res_id'] = fields.get('res_id') or 0 + raw, datas = fields.pop('raw', None), fields.pop('datas', None) + domain = [(field, '=', value) for field, value in fields.items()] + if fields.get('type') == 'url': + if 'url' not in fields: + return None + domain.append(('checksum', '=', False)) + else: + if not (raw or datas): + return None + domain.append(('checksum', '=', IrAttachment._compute_checksum(raw or b64decode(datas)))) + return IrAttachment.search(domain, limit=1) or None + +class Web_Editor(http.Controller): + #------------------------------------------------------ + # convert font into picture + #------------------------------------------------------ + @http.route([ + '/web_editor/font_to_img/', + '/web_editor/font_to_img//', + '/web_editor/font_to_img///', + '/web_editor/font_to_img///x', + '/web_editor/font_to_img////', + '/web_editor/font_to_img///x/', + '/web_editor/font_to_img///', + '/web_editor/font_to_img////', + '/web_editor/font_to_img////x', + '/web_editor/font_to_img////x/', + ], type='http', auth="none") + def export_icon_to_png(self, icon, color='#000', bg=None, size=100, alpha=255, font='/web/static/src/libs/fontawesome/fonts/fontawesome-webfont.ttf', width=None, height=None): + """ This method converts an unicode character to an image (using Font + Awesome font by default) and is used only for mass mailing because + custom fonts are not supported in mail. + :param icon : decimal encoding of unicode character + :param color : RGB code of the color + :param bg : RGB code of the background color + :param size : Pixels in integer + :param alpha : transparency of the image from 0 to 255 + :param font : font path + :param width : Pixels in integer + :param height : Pixels in integer + + :returns PNG image converted from given font + """ + # For custom icons, use the corresponding custom font + if icon.isdigit(): + if int(icon) == 57467: + font = "/web/static/fonts/tiktok_only.woff" + elif int(icon) == 61593: # F099 + icon = "59392" # E800 + font = "/web/static/fonts/twitter_x_only.woff" + elif int(icon) == 61569: # F081 + icon = "59395" # E803 + font = "/web/static/fonts/twitter_x_only.woff" + + size = max(width, height, 1) if width else size + width = width or size + height = height or size + # Make sure we have at least size=1 + width = max(1, min(width, 512)) + height = max(1, min(height, 512)) + # Initialize font + if font.startswith('/'): + font = font[1:] + font_obj = ImageFont.truetype(file_open(font, 'rb'), height) + + # if received character is not a number, keep old behaviour (icon is character) + icon = chr(int(icon)) if icon.isdigit() else icon + + # Background standardization + if bg is not None and bg.startswith('rgba'): + bg = bg.replace('rgba', 'rgb') + bg = ','.join(bg.split(',')[:-1])+')' + + # Convert the opacity value compatible with PIL Image color (0 to 255) + # when color specifier is 'rgba' + if color is not None and color.startswith('rgba'): + *rgb, a = color.strip(')').split(',') + opacity = str(floor(float(a) * 255)) + color = ','.join([*rgb, opacity]) + ')' + + # Determine the dimensions of the icon + image = Image.new("RGBA", (width, height), color) + draw = ImageDraw.Draw(image) + + if hasattr(draw, 'textbbox'): + box = draw.textbbox((0, 0), icon, font=font_obj) + left = box[0] + top = box[1] + boxw = box[2] - box[0] + boxh = box[3] - box[1] + else: # pillow < 8.00 (Focal) + left, top, _right, _bottom = image.getbbox() + boxw, boxh = draw.textsize(icon, font=font_obj) + + draw.text((0, 0), icon, font=font_obj) + + # Create an alpha mask + imagemask = Image.new("L", (boxw, boxh), 0) + drawmask = ImageDraw.Draw(imagemask) + drawmask.text((-left, -top), icon, font=font_obj, fill=255) + + # Create a solid color image and apply the mask + if color.startswith('rgba'): + color = color.replace('rgba', 'rgb') + color = ','.join(color.split(',')[:-1])+')' + iconimage = Image.new("RGBA", (boxw, boxh), color) + iconimage.putalpha(imagemask) + + # Create output image + outimage = Image.new("RGBA", (boxw, height), bg or (0, 0, 0, 0)) + outimage.paste(iconimage, (left, top), iconimage) + + # output image + output = io.BytesIO() + outimage.save(output, format="PNG") + response = Response() + response.mimetype = 'image/png' + response.data = output.getvalue() + response.headers['Cache-Control'] = 'public, max-age=604800' + response.headers['Access-Control-Allow-Origin'] = '*' + response.headers['Access-Control-Allow-Methods'] = 'GET, POST' + response.headers['Connection'] = 'close' + response.headers['Date'] = time.strftime("%a, %d-%b-%Y %T GMT", time.gmtime()) + response.headers['Expires'] = time.strftime("%a, %d-%b-%Y %T GMT", time.gmtime(time.time()+604800*60)) + + return response + + #------------------------------------------------------ + # Update a checklist in the editor on check/uncheck + #------------------------------------------------------ + @http.route('/web_editor/checklist', type='json', auth='user') + def update_checklist(self, res_model, res_id, filename, checklistId, checked, **kwargs): + record = request.env[res_model].browse(res_id) + value = filename in record._fields and record.read([filename])[0][filename] + htmlelem = etree.fromstring("

%s
" % value, etree.HTMLParser()) + checked = bool(checked) + + li = htmlelem.find(".//li[@id='checkId-%s']" % checklistId) + + if li is None: + return value + + classname = li.get('class', '') + if ('o_checked' in classname) != checked: + if checked: + classname = '%s o_checked' % classname + else: + classname = re.sub(r"\s?o_checked\s?", '', classname) + li.set('class', classname) + else: + return value + + value = etree.tostring(htmlelem[0][0], encoding='utf-8', method='html')[5:-6].decode("utf-8") + record.write({filename: value}) + + return value + + #------------------------------------------------------ + # Update a stars rating in the editor on check/uncheck + #------------------------------------------------------ + @http.route('/web_editor/stars', type='json', auth='user') + def update_stars(self, res_model, res_id, filename, starsId, rating): + record = request.env[res_model].browse(res_id) + value = filename in record._fields and record.read([filename])[0][filename] + htmlelem = etree.fromstring("
%s
" % value, etree.HTMLParser()) + + stars_widget = htmlelem.find(".//span[@id='checkId-%s']" % starsId) + + if stars_widget is None: + return value + + # Check the `rating` first stars and uncheck the others if any. + stars = [] + for star in stars_widget.getchildren(): + if 'fa-star' in star.get('class', ''): + stars.append(star) + star_index = 0 + for star in stars: + classname = star.get('class', '') + if star_index < rating and (not 'fa-star' in classname or 'fa-star-o' in classname): + classname = re.sub(r"\s?fa-star-o\s?", '', classname) + classname = '%s fa-star' % classname + star.set('class', classname) + elif star_index >= rating and not 'fa-star-o' in classname: + classname = re.sub(r"\s?fa-star\s?", '', classname) + classname = '%s fa-star-o' % classname + star.set('class', classname) + star_index += 1 + + value = etree.tostring(htmlelem[0][0], encoding='utf-8', method='html')[5:-6] + record.write({filename: value}) + + return value + + @http.route('/web_editor/video_url/data', type='json', auth='user', website=True) + def video_url_data(self, video_url, autoplay=False, loop=False, + hide_controls=False, hide_fullscreen=False, hide_yt_logo=False, + hide_dm_logo=False, hide_dm_share=False): + # TODO: In Master, remove the parameter "hide_yt_logo" (the parameter is + # no longer supported in the YouTube API.) + if not request.env.user._is_internal(): + raise werkzeug.exceptions.Forbidden() + return get_video_url_data( + video_url, autoplay=autoplay, loop=loop, + hide_controls=hide_controls, hide_fullscreen=hide_fullscreen, + hide_dm_logo=hide_dm_logo, hide_dm_share=hide_dm_share + ) + + @http.route('/web_editor/attachment/add_data', type='json', auth='user', methods=['POST'], website=True) + def add_data(self, name, data, is_image, quality=0, width=0, height=0, res_id=False, res_model='ir.ui.view', **kwargs): + data = b64decode(data) + if is_image: + format_error_msg = _("Uploaded image's format is not supported. Try with: %s", ', '.join(SUPPORTED_IMAGE_EXTENSIONS)) + try: + mimetype = guess_mimetype(data) + if mimetype not in SUPPORTED_IMAGE_MIMETYPES: + return {'error': format_error_msg} + data = tools.image_process(data, size=(width, height), quality=quality, verify_resolution=True) + except (ValueError, UserError) as e: + # When UserError thrown, browser considers file input an + # image but not recognized as such by PIL, eg .webp + return {'error': e.args[0]} + + self._clean_context() + attachment = self._attachment_create(name=name, data=data, res_id=res_id, res_model=res_model) + return attachment._get_media_info() + + @http.route('/web_editor/attachment/add_url', type='json', auth='user', methods=['POST'], website=True) + def add_url(self, url, res_id=False, res_model='ir.ui.view', **kwargs): + self._clean_context() + attachment = self._attachment_create(url=url, res_id=res_id, res_model=res_model) + return attachment._get_media_info() + + @http.route('/web_editor/attachment/remove', type='json', auth='user', website=True) + def remove(self, ids, **kwargs): + """ Removes a web-based image attachment if it is used by no view (template) + + Returns a dict mapping attachments which would not be removed (if any) + mapped to the views preventing their removal + """ + self._clean_context() + Attachment = attachments_to_remove = request.env['ir.attachment'] + Views = request.env['ir.ui.view'] + + # views blocking removal of the attachment + removal_blocked_by = {} + + for attachment in Attachment.browse(ids): + # in-document URLs are html-escaped, a straight search will not + # find them + url = tools.html_escape(attachment.local_url) + views = Views.search([ + "|", + ('arch_db', 'like', '"%s"' % url), + ('arch_db', 'like', "'%s'" % url) + ]) + + if views: + removal_blocked_by[attachment.id] = views.read(['name']) + else: + attachments_to_remove += attachment + if attachments_to_remove: + attachments_to_remove.unlink() + return removal_blocked_by + + @http.route('/web_editor/get_image_info', type='json', auth='user', website=True) + def get_image_info(self, src=''): + """This route is used to determine the original of an attachment so that + it can be used as a base to modify it again (crop/optimization/filters). + """ + attachment = None + if src.startswith('/web/image'): + with contextlib.suppress(werkzeug.exceptions.NotFound, MissingError): + _, args = request.env['ir.http']._match(src) + record = request.env['ir.binary']._find_record( + xmlid=args.get('xmlid'), + res_model=args.get('model', 'ir.attachment'), + res_id=args.get('id'), + ) + if record._name == 'ir.attachment': + attachment = record + if not attachment: + # Find attachment by url. There can be multiple matches because of default + # snippet images referencing the same image in /static/, so we limit to 1 + attachment = request.env['ir.attachment'].search([ + '|', ('url', '=like', src), ('url', '=like', '%s?%%' % src), + ('mimetype', 'in', SUPPORTED_IMAGE_MIMETYPES), + ], limit=1) + if not attachment: + return { + 'attachment': False, + 'original': False, + } + return { + 'attachment': attachment.read(['id'])[0], + 'original': (attachment.original_id or attachment).read(['id', 'image_src', 'mimetype'])[0], + } + + def _attachment_create(self, name='', data=False, url=False, res_id=False, res_model='ir.ui.view'): + """Create and return a new attachment.""" + IrAttachment = request.env['ir.attachment'] + + if name.lower().endswith('.bmp'): + # Avoid mismatch between content type and mimetype, see commit msg + name = name[:-4] + + if not name and url: + name = url.split("/").pop() + + if res_model != 'ir.ui.view' and res_id: + res_id = int(res_id) + else: + res_id = False + + attachment_data = { + 'name': name, + 'public': res_model == 'ir.ui.view', + 'res_id': res_id, + 'res_model': res_model, + } + + if data: + attachment_data['raw'] = data + if url: + attachment_data['url'] = url + elif url: + attachment_data.update({ + 'type': 'url', + 'url': url, + }) + else: + raise UserError(_("You need to specify either data or url to create an attachment.")) + + # Despite the user having no right to create an attachment, he can still + # create an image attachment through some flows + if ( + not request.env.is_admin() + and IrAttachment._can_bypass_rights_on_media_dialog(**attachment_data) + ): + attachment = IrAttachment.sudo().create(attachment_data) + # When portal users upload an attachment with the wysiwyg widget, + # the access token is needed to use the image in the editor. If + # the attachment is not public, the user won't be able to generate + # the token, so we need to generate it using sudo + if not attachment_data['public']: + attachment.sudo().generate_access_token() + else: + attachment = get_existing_attachment(IrAttachment, attachment_data) \ + or IrAttachment.create(attachment_data) + + return attachment + + def _clean_context(self): + # avoid allowed_company_ids which may erroneously restrict based on website + context = dict(request.context) + context.pop('allowed_company_ids', None) + request.update_env(context=context) + + @http.route("/web_editor/get_assets_editor_resources", type="json", auth="user", website=True) + def get_assets_editor_resources(self, key, get_views=True, get_scss=True, get_js=True, bundles=False, bundles_restriction=[], only_user_custom_files=True): + """ + Transmit the resources the assets editor needs to work. + + Params: + key (str): the key of the view the resources are related to + + get_views (bool, default=True): + True if the views must be fetched + + get_scss (bool, default=True): + True if the style must be fetched + + get_js (bool, default=True): + True if the javascript must be fetched + + bundles (bool, default=False): + True if the bundles views must be fetched + + bundles_restriction (list, default=[]): + Names of the bundles in which to look for scss files + (if empty, search in all of them) + + only_user_custom_files (bool, default=True): + True if only user custom files must be fetched + + Returns: + dict: views, scss, js + """ + # Related views must be fetched if the user wants the views and/or the style + views = request.env["ir.ui.view"].with_context(no_primary_children=True, __views_get_original_hierarchy=[]).get_related_views(key, bundles=bundles) + views = views.read(['name', 'id', 'key', 'xml_id', 'arch', 'active', 'inherit_id']) + + scss_files_data_by_bundle = [] + js_files_data_by_bundle = [] + + if get_scss: + scss_files_data_by_bundle = self._load_resources('scss', views, bundles_restriction, only_user_custom_files) + if get_js: + js_files_data_by_bundle = self._load_resources('js', views, bundles_restriction, only_user_custom_files) + + return { + 'views': get_views and views or [], + 'scss': get_scss and scss_files_data_by_bundle or [], + 'js': get_js and js_files_data_by_bundle or [], + } + + def _load_resources(self, file_type, views, bundles_restriction, only_user_custom_files): + AssetsUtils = request.env['web_editor.assets'] + + files_data_by_bundle = [] + resources_type_info = {'t_call_assets_attribute': 't-js', 'mimetype': 'text/javascript'} + if file_type == 'scss': + resources_type_info = {'t_call_assets_attribute': 't-css', 'mimetype': 'text/scss'} + + # Compile regex outside of the loop + # This will used to exclude library scss files from the result + excluded_url_matcher = re.compile(r"^(.+/lib/.+)|(.+import_bootstrap.+\.scss)$") + + # First check the t-call-assets used in the related views + url_infos = dict() + for v in views: + for asset_call_node in etree.fromstring(v["arch"]).xpath("//t[@t-call-assets]"): + attr = asset_call_node.get(resources_type_info['t_call_assets_attribute']) + if attr and not json.loads(attr.lower()): + continue + asset_name = asset_call_node.get("t-call-assets") + + # Loop through bundle files to search for file info + files_data = [] + for file_info in request.env["ir.qweb"]._get_asset_content(asset_name)[0]: + if file_info["atype"] != resources_type_info['mimetype']: + continue + url = file_info["url"] + + # Exclude library files (see regex above) + if excluded_url_matcher.match(url): + continue + + # Check if the file is customized and get bundle/path info + file_data = AssetsUtils._get_data_from_url(url) + if not file_data: + continue + + # Save info according to the filter (arch will be fetched later) + url_infos[url] = file_data + + if '/user_custom_' in url \ + or file_data['customized'] \ + or file_type == 'scss' and not only_user_custom_files: + files_data.append(url) + + # scss data is returned sorted by bundle, with the bundles + # names and xmlids + if len(files_data): + files_data_by_bundle.append([asset_name, files_data]) + + # Filter bundles/files: + # - A file which appears in multiple bundles only appears in the + # first one (the first in the DOM) + # - Only keep bundles with files which appears in the asked bundles + # and only keep those files + for i in range(0, len(files_data_by_bundle)): + bundle_1 = files_data_by_bundle[i] + for j in range(0, len(files_data_by_bundle)): + bundle_2 = files_data_by_bundle[j] + # In unwanted bundles, keep only the files which are in wanted bundles too (web._helpers) + if bundle_1[0] not in bundles_restriction and bundle_2[0] in bundles_restriction: + bundle_1[1] = [item_1 for item_1 in bundle_1[1] if item_1 in bundle_2[1]] + for i in range(0, len(files_data_by_bundle)): + bundle_1 = files_data_by_bundle[i] + for j in range(i + 1, len(files_data_by_bundle)): + bundle_2 = files_data_by_bundle[j] + # In every bundle, keep only the files which were not found + # in previous bundles + bundle_2[1] = [item_2 for item_2 in bundle_2[1] if item_2 not in bundle_1[1]] + + # Only keep bundles which still have files and that were requested + files_data_by_bundle = [ + data for data in files_data_by_bundle + if (len(data[1]) > 0 and (not bundles_restriction or data[0] in bundles_restriction)) + ] + + # Fetch the arch of each kept file, in each bundle + urls = [] + for bundle_data in files_data_by_bundle: + urls += bundle_data[1] + custom_attachments = AssetsUtils._get_custom_attachment(urls, op='in') + + for bundle_data in files_data_by_bundle: + for i in range(0, len(bundle_data[1])): + url = bundle_data[1][i] + url_info = url_infos[url] + + content = AssetsUtils._get_content_from_url(url, url_info, custom_attachments) + + bundle_data[1][i] = { + 'url': "/%s/%s" % (url_info["module"], url_info["resource_path"]), + 'arch': content, + 'customized': url_info["customized"], + } + + return files_data_by_bundle + + @http.route('/web_editor/modify_image/', type="json", auth="user", website=True) + def modify_image(self, attachment, res_model=None, res_id=None, name=None, data=None, original_id=None, mimetype=None): + """ + Creates a modified copy of an attachment and returns its image_src to be + inserted into the DOM. + """ + fields = { + 'original_id': attachment.id, + 'datas': data, + 'type': 'binary', + 'res_model': res_model or 'ir.ui.view', + 'mimetype': mimetype or attachment.mimetype, + } + if fields['res_model'] == 'ir.ui.view': + fields['res_id'] = 0 + elif res_id: + fields['res_id'] = res_id + if name: + fields['name'] = name + existing_attachment = get_existing_attachment(request.env['ir.attachment'], fields) + if existing_attachment and not existing_attachment.url: + attachment = existing_attachment + else: + attachment = attachment.copy(fields) + if attachment.url: + # Don't keep url if modifying static attachment because static images + # are only served from disk and don't fallback to attachments. + if re.match(r'^/\w+/static/', attachment.url): + attachment.url = None + # Uniquify url by adding a path segment with the id before the name. + # This allows us to keep the unsplash url format so it still reacts + # to the unsplash beacon. + else: + url_fragments = attachment.url.split('/') + url_fragments.insert(-1, str(attachment.id)) + attachment.url = '/'.join(url_fragments) + if attachment.public: + return attachment.image_src + attachment.generate_access_token() + return '%s?access_token=%s' % (attachment.image_src, attachment.access_token) + + def _get_shape_svg(self, module, *segments): + Module = request.env['ir.module.module'].sudo() + # Avoid creating a bridge module just for this check. + if 'imported' in Module._fields and Module.search([('name', '=', module)]).imported: + attachment = request.env['ir.attachment'].sudo().search([ + ('url', '=', f"/{module.replace('.', '_')}/static/{'/'.join(segments)}"), + ('public', '=', True), + ('type', '=', 'binary'), + ], limit=1) + if attachment: + return b64decode(attachment.datas) + raise werkzeug.exceptions.NotFound() + shape_path = get_resource_path(module, 'static', *segments) + if not shape_path: + raise werkzeug.exceptions.NotFound() + with tools.file_open(shape_path, 'r', filter_ext=('.svg',)) as file: + return file.read() + + def _update_svg_colors(self, options, svg): + user_colors = [] + svg_options = {} + default_palette = { + '1': '#3AADAA', + '2': '#7C6576', + '3': '#F6F6F6', + '4': '#FFFFFF', + '5': '#383E45', + } + bundle_css = None + regex_hex = r'#[0-9A-F]{6,8}' + regex_rgba = r'rgba?\(\d{1,3},\d{1,3},\d{1,3}(?:,[0-9.]{1,4})?\)' + for key, value in options.items(): + colorMatch = re.match('^c([1-5])$', key) + if colorMatch: + css_color_value = value + # Check that color is hex or rgb(a) to prevent arbitrary injection + if not re.match(r'(?i)^%s$|^%s$' % (regex_hex, regex_rgba), css_color_value.replace(' ', '')): + if re.match('^o-color-([1-5])$', css_color_value): + if not bundle_css: + bundle = 'web.assets_frontend' + files, _ = request.env["ir.qweb"]._get_asset_content(bundle) + asset = AssetsBundle(bundle, files) + bundle_css = asset.css().index_content + color_search = re.search(r'(?i)--%s:\s+(%s|%s)' % (css_color_value, regex_hex, regex_rgba), bundle_css) + if not color_search: + raise werkzeug.exceptions.BadRequest() + css_color_value = color_search.group(1) + else: + raise werkzeug.exceptions.BadRequest() + user_colors.append([tools.html_escape(css_color_value), colorMatch.group(1)]) + else: + svg_options[key] = value + + color_mapping = {default_palette[palette_number]: color for color, palette_number in user_colors} + # create a case-insensitive regex to match all the colors to replace, eg: '(?i)(#3AADAA)|(#7C6576)' + regex = '(?i)%s' % '|'.join('(%s)' % color for color in color_mapping.keys()) + + def subber(match): + key = match.group().upper() + return color_mapping[key] if key in color_mapping else key + return re.sub(regex, subber, svg), svg_options + + @http.route(['/web_editor/shape//'], type='http', auth="public", website=True) + def shape(self, module, filename, **kwargs): + """ + Returns a color-customized svg (background shape or illustration). + """ + svg = None + if module == 'illustration': + attachment = request.env['ir.attachment'].sudo().browse(unslug(filename)[1]) + if (not attachment.exists() + or attachment.type != 'binary' + or not attachment.public + or not attachment.url.startswith(request.httprequest.path)): + # Fallback to URL lookup to allow using shapes that were + # imported from data files. + attachment = request.env['ir.attachment'].sudo().search([ + ('type', '=', 'binary'), + ('public', '=', True), + ('url', '=', request.httprequest.path), + ], limit=1) + if not attachment: + raise werkzeug.exceptions.NotFound() + svg = attachment.raw.decode('utf-8') + else: + svg = self._get_shape_svg(module, 'shapes', filename) + + svg, options = self._update_svg_colors(kwargs, svg) + flip_value = options.get('flip', False) + if flip_value == 'x': + svg = svg.replace('//'], type='http', auth="public", website=True) + def image_shape(self, module, filename, img_key, **kwargs): + svg = self._get_shape_svg(module, 'image_shapes', filename) + + record = request.env['ir.binary']._find_record(img_key) + stream = request.env['ir.binary']._get_image_stream_from(record) + if stream.type == 'url': + return stream.get_response() + + image = stream.read() + img = binary_to_image(image) + width, height = tuple(str(size) for size in img.size) + root = etree.fromstring(svg) + + if root.attrib.get("data-forced-size"): + # Adjusts the SVG height to ensure the image fits properly within + # the SVG (e.g. for "devices" shapes). + svgHeight = float(root.attrib.get("height")) + svgWidth = float(root.attrib.get("width")) + svgAspectRatio = svgWidth / svgHeight + height = str(float(width) / svgAspectRatio) + + root.attrib.update({'width': width, 'height': height}) + # Update default color palette on shape SVG. + svg, _ = self._update_svg_colors(kwargs, etree.tostring(root, pretty_print=True).decode('utf-8')) + # Add image in base64 inside the shape. + uri = image_data_uri(b64encode(image)) + svg = svg.replace(': { + 'query': 'space separated search terms', + 'is_dynamic_svg': True/False, + 'dynamic_colors': maps color names to their color, + }, ... + } + """ + attachments = [] + ICP = request.env['ir.config_parameter'].sudo() + library_endpoint = ICP.get_param('web_editor.media_library_endpoint', DEFAULT_LIBRARY_ENDPOINT) + + media_ids = ','.join(media.keys()) + params = { + 'dbuuid': ICP.get_param('database.uuid'), + 'media_ids': media_ids, + } + response = requests.post('%s/media-library/1/download_urls' % library_endpoint, data=params) + if response.status_code != requests.codes.ok: + raise Exception(_("ERROR: couldn't get download urls from media library.")) + + for id, url in response.json().items(): + req = requests.get(url) + name = '_'.join([media[id]['query'], url.split('/')[-1]]) + IrAttachment = request.env['ir.attachment'] + attachment_data = { + 'name': name, + 'mimetype': req.headers['content-type'], + 'datas': b64encode(req.content), + 'public': True, + 'res_model': 'ir.ui.view', + 'res_id': 0, + } + attachment = get_existing_attachment(IrAttachment, attachment_data) + # Need to bypass security check to write image with mimetype image/svg+xml + # ok because svgs come from whitelisted origin + if not attachment: + context = {'binary_field_real_user': request.env['res.users'].sudo().browse([SUPERUSER_ID])} + attachment = IrAttachment.sudo().with_context(context).create(attachment_data) + if media[id]['is_dynamic_svg']: + colorParams = werkzeug.urls.url_encode(media[id]['dynamic_colors']) + attachment['url'] = '/web_editor/shape/illustration/%s?%s' % (slug(attachment), colorParams) + attachments.append(attachment._get_media_info()) + + return attachments + + @http.route("/web_editor/get_ice_servers", type='json', auth="user") + def get_ice_servers(self): + return request.env['mail.ice.server']._get_ice_servers() + + @http.route("/web_editor/bus_broadcast", type="json", auth="user") + def bus_broadcast(self, model_name, field_name, res_id, bus_data): + document = request.env[model_name].browse([res_id]) + + document.check_access_rights('read') + document.check_field_access_rights('read', [field_name]) + document.check_access_rule('read') + document.check_access_rights('write') + document.check_field_access_rights('write', [field_name]) + document.check_access_rule('write') + + channel = (request.db, 'editor_collaboration', model_name, field_name, int(res_id)) + bus_data.update({'model_name': model_name, 'field_name': field_name, 'res_id': res_id}) + request.env['bus.bus']._sendone(channel, 'editor_collaboration', bus_data) + + @http.route('/web_editor/tests', type='http', auth="user") + def test_suite(self, mod=None, **kwargs): + return request.render('web_editor.tests') + + @http.route("/web_editor/ensure_common_history", type="json", auth="user") + def ensure_common_history(self, model_name, field_name, res_id, history_ids): + record = request.env[model_name].browse([res_id]) + try: + ensure_no_history_divergence(record, field_name, history_ids) + except ValidationError: + return record[field_name] diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/data/editor_assets.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/data/editor_assets.xml new file mode 100644 index 0000000..fb1034f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/data/editor_assets.xml @@ -0,0 +1,11 @@ + + + + + 13 0 color system support primary variables SCSS + web._assets_primary_variables + web_editor/static/src/scss/13_0_color_system_support_primary_variables.scss + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/af.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/af.po new file mode 100644 index 0000000..8247303 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/af.po @@ -0,0 +1,3392 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Voeg by" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Gekanselleer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Geskep deur" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Geskep op" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Beskrywing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Vertoningsnaam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Laas Gewysig op" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Laas Opgedateer deur" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Laas Opgedateer op" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Skakel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Naam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Geen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normaal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Stoor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Soort" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "en" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/am.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/am.po new file mode 100644 index 0000000..3fbaee6 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/am.po @@ -0,0 +1,3388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ar.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ar.po new file mode 100644 index 0000000..46e89b0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ar.po @@ -0,0 +1,3450 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Abed Al-Shammari , 2022 +# Mustafa J. Kadhem , 2022 +# Mustafa Rawi , 2022 +# Martin Trigaux, 2023 +# Malaz Abuidris , 2023 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (الأصلي) " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (المقترح) " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"تحدد 'علامة التصنيف البديلة' نصاً بديلاً للصورة، إذا تعذّر عرض الصورة (بسبب " +"بطء الاتصال، أو فقدان الصورة، أو مشكلة في مسح الشاشة،...). " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"تُعرض 'علامة تصنيف العنوان' كتلميح عندما تقوم بتمرير المؤشر على الصورة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(علامة تصنيف بديلة) " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(علامة تصنيف العنوان) " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(الرابط أو الكود المضمن)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "عمودان 2 " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 نجوم " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 أعمدة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 أعمدة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 نجوم " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "الكتل الإنشائية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "تخصيص " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"حدث خطأ في الخادم. يرجى التحقق من تسجيل دخولك بشكل صحيح ومن صحة تنسيق الملف " +"الذي تحاول حفظه. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "فوق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "يقبل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "إضافة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "إضافة عمود " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "إضافة صف " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "إضافة رابط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "إضافة قسم للاقتباس. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "إضافة زر. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "إضافة قسم للكود. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "إضافة عمود إلى اليسار " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "إضافة عمود إلى اليمين " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "إضافة رابط. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "إضافة صف إلى الأعلى " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "إضافة صف إلى الأسفل " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "التنبيه" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "المحاذاة في الوسط " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "المحاذاة إلى اليسار " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "المحاذاة إلى اليمين " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "المحاذاة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "الكل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "كافة ملفات SCSS " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "تم تحميل كافة المستندات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "لقد تم رفع كافة الصور " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "علامة التصنيف البديلة " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "الزاوية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "متحرك " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "مجهول الهوية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "تطبيق" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "هل أنت متأكد من أنك ترغب من حذف هذه القصاصة: %s؟ " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "هل أنت متأكد من أنك تريد حذف هذا الملف؟ " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "تناسب الأبعاد" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "أدوات الأصول " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "مرفق" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "رابط URL للمرفق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "التحويل التلقائي للرابط المتعلق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "تشغيل تلقائي" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "العودة إلى عمود واحد. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "الخلفية" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "لون الخلفية" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "تموضع الخلفية " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "أساس" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "الكتل البرمجية القياسية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "الأساسيات" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "الأسفل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "ترويسة قسم كبير. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "لطخات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "كتلة برمجية إنشائية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "مكعبات ومطر " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "تمويه " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "عريض" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "الحدود " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "لون الحدود " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "نمط الإطار " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "عرض الحدود " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "برانان " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "السطوع " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "قائمة نقاط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "زر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "إلغاء " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "احذر!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "الوسط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "تغيير وصف الوسائط وتلميحاتها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "قائمة مرجعية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "اختر سجلاً... " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "إغلاق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "الكود" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "اللون" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "تأثير فني ملون " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "الألوان" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "العمود" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "ألوان دارجة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "تأكيد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "تأكيد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "تعارض المحتوى " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "التناقض " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "تحويل إلى عمودين. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "تحويل إلى 3 أعمدة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "تحويل إلى 4 أعمدة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "نسخ الرابط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "قم بنسخ ولصق رابطك أو الكود المضمن هنا" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "تعذر تثبيت التطبيق %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "تعذر تحميل الملف \"%s\". " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "الغلاف " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "إنشاء" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "إنشاء قائمة مرقمة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "إنشاء قائمة نقاط بسيطة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "إنشاء رابط URL. " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "قص الصورة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "مُخصص" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "مخصص %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "متقطع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "افتراضي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "الافتراضي + دائري " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "تحديد تدرج ألوان مخصص " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "حذف" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "حذف %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "حذف الجدول الحالي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "الوصف" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "الأجهزة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "تجاهل" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "إهمال السجل " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "اسم العرض " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "هل ترغب في تثبيت تطبيق %s؟ " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "المستندات" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "منقط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "مزدوج " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "انقر مرتين للتحرير" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "سحب وإفلات الكتلة البنائية. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "استنساخ الحاوية" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "ألوان ديناميكية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "عنصر نائب ديناميكي " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "خطأ: تعذر إحضار روابط التنزيل من مكتبة الوسائط. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "المبكر " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "تحرير الرابط " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "تحرير الصورة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "تحرير وصف الوسائط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"لا يحبذ تحرير ملف موجود كجزء من أداة التحرير هذه، حيث أن ذلك سيمنعه من أن " +"يتم تحديثه عند تحديثات التطبيق المستقبلية. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "تضمين صورة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "تضمين مقطع فيديو اليوتيوب " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "تضمين الصورة في المستند. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "تضمين مقطع فيديو اليوتيوب في المستند. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "اقتباس فارغ " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "متوقع " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "التمديد لأقرب زاوية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "التمديد لأقرب جهة " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "التمديد لأبعد زاوية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "التمديد لأبعد جهة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "لقد تم تحديث الملف " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "ملء " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "ملء + دائري " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "ملء اللون " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "عامل التصفية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "اللوحة الأولى " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "مسطح" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "مرن " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "قلب " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "القلب أفقياً " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "القلب رأسياً " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "أشكال عائمة " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "فواصل عشرية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "لون الخط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "حجم الخط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "لا يمكن إفلات الكتلة البنائية هنا لأسباب تقنية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "التنسيق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "ملء الشاشة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"احصل على الصورة المثالية عن طريق البحث في مكتبتنا التي تحتوي على صور ورسومات" +" خالية من حقوق النشر. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "تدرج ألوان " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "مسار HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "الترويسة 1 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "الترويسة 2 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "الترويسة 3 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "الترويسة 4 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "الترويسة 5 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "الترويسة 6 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "العنوان 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "العنوان 2 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "العنوان 3 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "العنوان 4 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "العنوان 5 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "العنوان 6 " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "الارتفاع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "إخفاء شعار Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "إخفاء زر ملء الشاشة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "إخفاء متحكمات التشغيل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "إخفاء زر المشاركة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "المُعرف" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "الأيقونة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "تنسيق الأيقونة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "حجم الأيقونة 1x " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "حجم الأيقونة 2x " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "حجم الأيقونة 3x " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "حجم الأيقونة 4x " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "حجم الأيقونة 5x " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "الأيقونات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"إذا قمت بتجاهل التعديلات الحالية، سوف تضيع كافة التغييرات غير المحفوظة. " +"بإمكانك إلغاء الإجراء للعودة إلى وضع التحرير. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"إذا أعدت تعيين هذا الملف، ستضيع كافة التخصيصات وسيعود الملف لحالته " +"الافتراضية." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "الرسومات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "صورة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "تنسيق الصورة " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "ارتفاع الصورة " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "مصدر الصورة " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "عرض الصورة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "حشو الصورة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "الصور " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "نص مضمن " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "أدخل تقييماً أعلى من 3 نجوم. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "أدخل تقييماً أعلى من 5 نجوم. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "إدراج جدول. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "إدراج فيديو. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "إدراج في الأعلى " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "إدراج فاصل قاعدة أفقي. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "إدراج صورة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "إدراج في الأسفل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "إدراج في اليسار " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "إدراج وسائط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "إدراج أو تحرير رابط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "قم بإدراج المحتوى المخصص " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "إدراج في اليمين " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "إدراج جدول " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "أدرج توقيعك. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "تثبيت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "تثبيت %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "جاري التثبيت " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "قيمة الحقل غير صالحة لـ %s: %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "العناصر الخفية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "العنصر " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "ملف JS: %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "كبير" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "يسار" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "خطي " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "البنود" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "الرابط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "بطاقة عنوان الرابط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "تم نسخ الرابط في الحافظة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "رابط إلى" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "القائمة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "تحميل المزيد... " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "تكرار " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "اللون الرئيسي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "أدوات التسويق " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "الإعلام " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "متوسط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "ترويسة قسم متوسط. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "المزيد من المعلومات حول هذا التطبيق. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "التحريك لأسفل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "التحرك لليسار " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "التحرك لليمين " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "التحريك لأعلى " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "صوري " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "الاسم" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "التنقل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "لا" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "لا يوجد رابط URL محدد " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "لم يتم العثور على أي مستندات. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "لم يتم العثور على صور. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "لا يوجد موقع لوضعه " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "لا توجد المزيد من السجلات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "لم يتم العثور على أي رسوم توضيحية. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "لا شيء" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "عادي" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "قائمة مرقمة " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "اختبارات محرر أودو " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "ملفات SCSS المخصصة فقط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "ملفات صفحة SCSS فقط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "المشاهدات فقط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "فتح في علامة تبويب جديدة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "فتح في نافذة جديدة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "تم التحسين " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "مرفق أصلي (غير محسن، لم يتم تحجيمه) " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "الأصول " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "التحديد " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "محدد + تحديد دائري " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "وقت الفحص والترميم " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "خيارات الصفحة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "كتلة الفقرة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "لصق كرابط URL " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "الأنماط " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "منصب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "معاينة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "الرئيسي" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "الجودة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "اقتباس" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "حقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "جهة اتصال حقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "تاريخ حقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "حقل Qweb من النوع Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "مدة حقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "قيمة عشرية لحقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "حقل Qweb من النوع HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "صورة حقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "حقل Qweb صحيح" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "حقل Qweb واحد لواحد" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "حقل Qweb نقدي" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "حقل Qweb نسبي" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "اختيار حقل Qweb " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "نص حقل Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "حقل Qweb من النوع qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "نصف قطري " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "حقل للقراءة فقط" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "إعادة توجيه المستخدم إلى مكان آخر عند الضغط على الوسائط. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "إزالة (حذف) " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "إزالة الكتلة البنائية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "إزالة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "إزالة الرابط " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "إزالة اللون المحدد " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "إزالة الأعمدة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "إزالة العمود الحالي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "إزالة الصف الحالي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "إزالة التنسيق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "إزالة الرابط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "إعادة التسمية %s " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "تكرار النمط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "استبدال" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "استبدال الوسائط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "إعادة الضبط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "إعادة تعيين الصورة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "إعادة تعيين الحجم " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "إعادة تعيين القص " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "إعادة تعيين التحويل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "خاصية إعادة تعيين أدوات العرض غير مدعومة بعد " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "التحجيم للافتراضي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "التحجيم كاملاً " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "التحجيم للنصف " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "التحجيم للربع " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "يمين" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "التدوير لليسار" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "التدوير لليمين" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "صف " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "ملف SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "الإشباع " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "حفظ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "حفظ وتثبيت " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "حفظ وإعادة تحميل " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "حفظ السجل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "البحث عن مستند " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "البحث عن رسم تخطيطي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "البحث عن صورة " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "ابحث عن كتلة إنشائية (مثال: أرقام، حائط صورة، ...) " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "البحث عن السجلات... " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "البحث عن المزيد... " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "البحث لإظهار المزيد من السجلات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "ثانوي " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "اختر كتلة بنائية في صفحتك لتزيينها. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "قم بتحديد الوسط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "الفاصل" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "داكن " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "خطأ في الخادم " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "الظل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "الشكل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "شكل: دائرة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "شكل: دائري " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "الشكل: الصورة المصغرة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "إظهار الصور المحسنة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "التوقيع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "الحجم" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "الحجم 1x " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "الحجم 2x " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "الحجم 3x " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "الحجم 4x " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "الحجم 5x " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "صغير" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "ترويسة قسم صغير. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "لون خالص " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "ألوان خالصة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"قام شخص ذو صلاحيات وصول متقدمة بتعديل هذا الحقل سابقاً، ولذك، ليس بمقدورك " +"تعديله بنفسك. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "الخاصة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "الهيكل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "الشكل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "الاقتراحات " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "تبديل الاتجاه " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "تبديل اتجاه النص. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "جدول " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "خيارات الجدول " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "أدوات الجدول " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "معرف القالب: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "النص" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "لون النص " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "محاذاة النص " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "شكل الخط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "يبدو أن رابط URL لا يعمل. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "يبدو رابط URL صالحاً. " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "التاريخ والوقت %s لا يطابقان هذا التنسيق %s " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"لقد تم حفظ المستند بالفعل بواسطة شخص ذو سجل مختلف للنموذج %r، الحقل %r مع " +"المعرف %r. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "الرابط لا يشمل أي فيديو مدعوم" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "رابط URL الذي قمت بتقديمه غير صالح " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "رابط URL الذي قدمته غير صالح " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"سيتم استخدام النسخة من قاعدة البيانات.\n" +" إذا كان لابد من إبقاء تغييراتك، قم بنسخ المحتوى أدناه وتحرير المستند الجديد." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "السمة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "ألوان السمة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "هناك تعارض بين نسختك والنسخة الموجودة في قاعدة البيانات. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "رابط URL هذا غير صالح. تعذر تحديث المعاينة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "هذه الكتلة البنائية قديمة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "هذا المستند غير محفوظ!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "هذا الملف هو مرفق للعرض العام. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "هذا الملف مرفق بالسجل الحالي. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "هذه الصورة خارجية" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"هذا النوع من الصور لا يدعم خاصية القص.
إذا أردت قصها، يرجى تنزيلها " +"أولاً من المصدر الأصلي ثم رفعها في أودو. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "العنوان" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "علامة تصنيف العنوان " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"لإجراء التغييرات، قم بإفلات هذه الكتلة البنائية واستخدم الخيارات الجديدة في " +"آخر إصدار. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "لحفظ قصاصة، نحتاج إلى حفظ كافة تعديلاتك السابقة وإعادة تحميل الصفحة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "المهام المراد تنفيذها" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "محمصة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "التبديل لعريض " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "تبديل القائمة المرجعية " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "تبديل دوران الأيقونة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "التبديل لمائل " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "تبديل القائمة المطلوبة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "التبديل إلى نص يتوسطه خط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "التبديل للتعليم بخط " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "تبديل القائمة غير المطلوبة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "تلميح " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "تتبع المهام باستخدام القائمة المرجعية. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "تحويل " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "تحويل الصورة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "حول هذه الصورة (انقر مرتين لإعادة تعيين عملية التحويل)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "ترجِم" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "ألوان شفافة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "جرب البحث باستخدام كلمة مفتاحية أخرى " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "النوع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "اكتب \"/\" للأوامر " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "الرابط أو البريد الإلكتروني" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "عدم المحاذاة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "غير متوقع " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "رفع مستند" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "رفع صورة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "صيغة الصورة التي قمت برفعها غير مدعومة. جرب استخدام: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "صيغة الصورة المرفوعة غير مدعومة: جرب استخدام: %s " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "فالنسيا " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "الفيديو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "تنسيق الفيديو " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "كود الفيديو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "مقاطع الفيديو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "يتم كتم الصوت في مقاطع الفيديو عندما يتم تمكين التشغيل التلقائي " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "عرض " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "حزم المشاهدات والأصول " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"تحذير: بعد إغلاق هذا الحوار، سيتم إهمال النسخة التي كنت تعمل عليها ولن تكون " +"متاحة بعد الآن. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "مموج " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "الاختبار الفرعي لمحول محرر الويب " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "اختبار محول محرر الويب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "الأدوات الذكية " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "العرض" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "اكتب شيئًا..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "كبير جداً " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "نعم" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "بإمكانك رفع المستندات باستخدام الزر الموجود في أعلى يمين الشاشة. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "بإمكانك رفع الصور باستخدام الزر الموجود في أعلى يمين الشاشة. " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "عليك تحديد إما البيانات أو رابط URL لإنشاء مرفق. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "رابط URL الخاص بك " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "تكبير" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "تصغير" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "إضافة" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "و" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "تلقائي" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "تغميق " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "افتراضي " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "حصر " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "تفتيح " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "مضاعفة " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "تراكب " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "بيكسل" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "شاشة " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "مقاطع الفيديو" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "التعامل مع رسائل websocket " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/az.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/az.po new file mode 100644 index 0000000..a7861ae --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/az.po @@ -0,0 +1,3437 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# shahriyar rzayev, 2024 +# Jumshud Sultanov , 2025 +# Nurlan Farajov , 2025 +# erpgo translator , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: erpgo translator , 2025\n" +"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Orijinal)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Təklif olunan)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"“Alt teq” şəkil göstərilmədikdə (yavaş bağlantı, şəkil yoxdur, ekran oxuyucu" +" və s.) onun əvəzinə göstəriləcək alternativ mətni təyin edir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "\"Başlıq teq”i şəklin üzərinə gətirdiyiniz zaman ipucu kimi göstərilir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Teqi)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(BAŞLIQ Teqi)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL və ya Gömülmüş kod)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 sütun" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Ulduz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 sütun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 sütun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Ulduz" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "dərəcə" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Üstünə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Qəbul edilən" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Əlavə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Sütun əlavə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Sıra əlavə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URL əlavə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Xəbərdarlığ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Mərkəzdə hizala" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Solda hizala" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Sağda hizala" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Hizalanma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "BÜTÜN" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Bütün sənədlər yüklənib" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Bütün şəkillər yüklənib" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt teqi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Bucaq" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animasiya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Tətbiq edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Aspekt nisbəti" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Aktivlərin Xidməti Sinfi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Qoşma" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Qoşmanın URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Nisbi linkə avtomatik çevirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Avtomatik oynatma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Fonun Rəngi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Arxa fon mövqeyi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Baza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Əsas bloklar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Altına" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Bloblar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Bloklar və Yağışlı" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Bulanıq" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Qalın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Haşiyə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Haşiyə Rəngi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Haşiyə üslubu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Haşiyə Eni" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Parlaqlıq" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Markerli siyahı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Düymə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Ləğv edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Mərkəz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Media təsvirini və ipucunu dəyişdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Yoxlama siyahısı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Rekord seçin..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Bağlayın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Rəng" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Rənglər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Sütun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Ümumi rənglər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Təsdiq edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Təsdiq" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Məzmun toqquşması" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "URL-nizi və ya əlavə kodunuzu buraya kopyalayıb yapışdırın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "\"%s\" faylını yükləmək mümkün olmadı." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Üz qabığı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Yaradın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "URL yaradın." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Tərəfindən yaradılıb" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Tarixdə yaradıldı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Şəkli kəsin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Xüsusi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Fərdi %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Ştrixlənmiş" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Susmaya görə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Defolt + Dairəvi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Fərdi gradient təyin edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Silin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "%s silin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Təsvir" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Cihazlar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Ləğv edin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Ekran Adı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Sənədlər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Nöqtəli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "İki dəfə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Redaktə etmək üçün iki dəfə klikləyin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Blok elementini sürükləyib buraxın." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Konteyneri Kopyala" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dinamik Rənglər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dinamik Yerdəyişən" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Şəkli redaktə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Media təsvirini redaktə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Şəkil Yerləşdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Youtube Video yerləşdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Şəkli sənədə yerləşdirin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Youtube videosunu sənədə yerləşdirin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Boş sitat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Ən yaxın küncə uzat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Ən yaxın tərəfə uzat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Ən uzaq küncə uzat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Ən uzaq tərəfə uzat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Fayl yükləndi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Doldur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Doldurulmuş + Dairəvi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Doldurma Rəngi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "FİLTER" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Birinci Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Mənzil " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Çevik" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Flip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Üfüqi çevirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Şaquli çevirin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Font Rəngi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Şrift Ölçüsü" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Texniki səbəblərə görə bu blok buraya yerləşdirilə bilməz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Tam Ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Qradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Marşrutizasiyası" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Başlıq 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Başlıq 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Başlıq 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Başlıq 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Başlıq 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Başlıq 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Başlıq 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Başlıq 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Başlıq 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Başlıq 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Başlıq 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Başlıq 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Hündürlük" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotion loqosunu gizlədin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Tam ekran düyməsini gizlət" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Oynadıcı kontrol düymələrini gizlət" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Paylaşım düyməsini gizlədin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Simvol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "İkon Formatlaması" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "İkon ölçüsü 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "İkon ölçüsü 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "İkon ölçüsü 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "İkon ölçüsü 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "İkon ölçüsü 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "İkonlar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Cari redaktələri ləğv etsəniz, bütün yadda saxlanılmamış dəyişikliklər " +"itiriləcək. Redaktə rejiminə qayıtmaq üçün ləğv edə bilərsiniz." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "İllüstrasiyalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Şəkil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Şəklin Formatlanması" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Şəklin hündürlüyü" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Şəklin Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Şəklin Eni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Şəkil araqatı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Şəkillər" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Mürəkkəb qabı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Daxili Mətn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Yuxarıya daxil edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Aşağıya daxil edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Sola daxil edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Media daxil edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Link daxil edin və ya redaktə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Sağa daxil edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Quraşdır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "%s quraşdırın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "%s üçün yanlış xana dəyəri: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Görünməz elementlər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Element" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Böyük" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Son Dəyişdirilmə tarixi" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Son Yeniləyən" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Son Yenilənmə tarixi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Sol" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Xətti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Sətirlər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Bağlantı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Link Etiketi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link buferə kopyalandı!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "List" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Daha çox yüklə..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Döngü" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Əsas Rəng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketinq Alətləri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Reklam Vasitəsi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Bu proqram haqqında ətraflı məlumat." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Aşağı daşı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Sola daşı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Sağa daşı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Yuxarı daşı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Şəkillərim" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Ad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Naviqasiya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Tapılmayanlar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL müəyyən edilməyib" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Heç bir sənəd tapılmadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Şəkil tapılmadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Daha rekord yoxdur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Heç bir piktoqram tapılmadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Heçbiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Nömrələnmiş siyahı" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Redaktor Testləri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Yeni pəncərədə açın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimallaşdırılmış" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Mənşələr" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Kontur " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Kontur + Dairəvi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Araqat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Səhifə Seçimləri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "URL olaraq yapışdırın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Nümunələr" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Mövqe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "İlkin Baxış" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "İlkin" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Keyfiyyət" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Sitat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb sahə" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb Əlaqə Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Tarix Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Datetime sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb Müddət Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb Üzmə Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb HTML sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Təsvir Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb Rəqəm Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Bir-Çox Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Pul Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Nisbi Sahə" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb Seçim Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Mətn Sahəsi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Sahə qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Yalnız oxunan xana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "İstifadəçi mediaya kliklədikdə onu başqa yerə yönləndirin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Çıxarın (Silin)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Bloku çıxarın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "İndikini çıxarın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Seçilmiş Rəngi Silin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Sütunları silin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Formatı silin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Linki silin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "%s adını dəyişin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Nümunəni təkrarlayın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Yer dəyişdir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Medianı əvəzləyin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Sıfırla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Şəkli sıfırlayın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Ölçünü Sıfırlayın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Kəsməni sıfırlayın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Transformasiyanı sıfırlayın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Defolt ölçüsünə dəyişdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Tam ölçüsünə dəyişdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Yarım ölçüsünə dəyişdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Rüb ölçüsünə dəyişdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Sağ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Sola fırladın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Sağa fırladın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Sıra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturasiya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Yadda Saxla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Saxla və Quraşdır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Saxla və Yenidən Yüklə" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Sənəd axtarın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Piktoqram axtarın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Şəkil axtarın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Blok axtarın (məsələn, nömrələr, şəkil divarı, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Rekord axtarın..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Daha çox axtar..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Daha çox rekord göstərmək üçün axtarın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "İkinci Dərəcəli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Səhifənizə üslub vermək üçün bir blok seçin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Media seçin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Ayırıcı" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Kölgə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forma: Dairə" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forma: Dairəvi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatür" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Optimallaşdırılmış şəkilləri göstərin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "İmza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Ölçü" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Ölçü 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Ölçü 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Ölçü 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Ölçü 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Ölçü 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Kiçik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Cisim" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solidlər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Bu sahə əvvəlcə daha yüksək hüquqlara malik biri tərəfindən dəyişdirilib, " +"buna görə siz onu dəyişə bilməzsiniz." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Xüsusilər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Təkliflər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "İstiqamət dəyişdirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Cədvəl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Cədvəl Seçimləri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Mətn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Lentə yazı rəngi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Mətn hizası" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Mətn üslubu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL işlək görsənmir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL etibarlı görünür." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "%s tarix vaxtı %s formatına uyğun gəlmir" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Təqdim olunan url heç bir dəstəklənən videoya istinad etmir" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Təqdim olunan url etibarsızdır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Təqdim olunan url etibarlı deyil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Tema rəngləri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Versiyanızla verilənlər bazasındakı versiya arasında ziddiyyət var." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Bu URL etibarsızdır. Önizləməni yeniləmək mümkün olmadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Bu sənəd yadda saxlanmayıb!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Bu fayl ictimai görünüş əlavəsidir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Bu fayl cari rekorda əlavə edilmişdir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Bu şəkil xarici şəkildir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Bu cür şəkil kəsmə üçün dəstəklənmir.
Onu kəsmək istəyirsinizsə, " +"əvvəlcə onu orijinal mənbədən endirin və Odoo-da yükləyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Başlıq" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Başlıq teqi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Snippeti saxlamaq üçün bütün əvvəlki dəyişikliklərinizi yadda saxlamalı və " +"səhifəni yenidən yükləməliyik." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Mətnin qalınlığını aktiv/deaktiv edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Yoxlama siyahısını aktiv/deaktiv edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "İkon fırlanmasını aktiv/deaktiv et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Mətnin kursivini aktiv/deaktiv et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Nömrələnmiş siyahını aktiv/deaktiv et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Üzərindən xətt çəkməni aktiv/deaktiv et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Altıxətli mətni aktiv/deaktiv et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Nömrələnməmiş siyahını aktiv/deaktiv et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Çıxan izah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Çevirmək" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Şəkli çevirin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Şəkli çevirin (çevirməni sıfırlamaq üçün iki dəfə klikləyin)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Tərcümə edin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Şəffaf rənglər" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Digər açar sözlərlə axtarış etməyə çalışın." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Əmrlər üçün \"/\" yazın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL və ya E-poçt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Hizalamayın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Sənəd yükləyin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Bir şəkil yükləyin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Yüklənmiş şəklin formatı dəstəklənmir. Bununla cəhd edin: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Video Formatlanması" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video kodu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "videolar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Avtomatik oxutma aktiv olduqda videolar səssizə düşür" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Baxın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Xəbərdarlıq: bu dialoqu bağladıqdan sonra üzərində işlədiyiniz versiya " +"silinəcək və daha heç vaxt əlçatan olmayacaq." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Dalğalı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Veb Redaktoru Çevirici Alt Testi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Veb Redaktoru Çevirici Testi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Vidcetlər" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "En" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Bir şey yaz..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Bəli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Ekranın yuxarı sol hissəsində yerləşən düymə ilə sənədləri yükləyə " +"bilərsiniz." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Sizin URL-iniz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Yaxınlaşdır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Uzaqlaşdır" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "əlavə et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "və" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "avto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "qarald" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "istisna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "aç" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "çoxalt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "örtük" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videolarıdır" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket mesajlarının idarə edilməsi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.nümunə.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/be.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/be.po new file mode 100644 index 0000000..9280ca2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/be.po @@ -0,0 +1,3420 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Ivan Shakh, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Ivan Shakh, 2025\n" +"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: be\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Дадаць" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Папярэджанне" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Усе" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Прымяніць" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Прымацаванне" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Базавы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Кнопка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Адмяніць" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Зачыніць" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Колеры" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Пацвярджэнне" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Стварыць" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Стварыў" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Створана" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Па змаўчанні" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Выдаліць" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Апісанне" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Скасаваць" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Скасаваць запіс" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Назва для адлюстравання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-маршрутызацыя" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Апошняя мадыфікацыя" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Апошні абнавіў" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Апошняе абнаўленне" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Назва" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "і" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bg.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bg.po new file mode 100644 index 0000000..24b38eb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bg.po @@ -0,0 +1,3437 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# KeyVillage, 2023 +# Anton Vassilev, 2023 +# Radina , 2023 +# Ивайло Малинов , 2023 +# Rosen Vladimirov , 2023 +# Igor Sheludko , 2023 +# Boris Stefanov , 2023 +# Kaloyan Naumov , 2023 +# aleksandar ivanov, 2023 +# Martin Trigaux, 2023 +# Elena Varbanova, 2024 +# Margarita Katzeva, 2024 +# Albena Mincheva , 2025 +# Maria Boyadjieva , 2025 +# Veselina Slavkova, 2025 +# Petko Karamotchev, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Petko Karamotchev, 2025\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 колони" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 колони" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 звезди" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "По-горе" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Приема" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Добави" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Добави колона" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Добави ред" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Добави URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Сигнал" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Подравняване" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Всички" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Анонимен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Приложи" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Съотношение на страните" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Прикачен файл" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr " URL на прикачен файл" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Автоматично изпълнение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Background" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Цвят на фона" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Основа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Основи" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "По-долу" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Петна" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Блокирайте" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Размазване" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Удебелен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Граница" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Цвят на границите" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Стил на границите" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Ширина на границите" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Бутон" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Отказ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Център" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Променете медийното описание и изскачащото съобщение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Затвори" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Код" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Цвят" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Цветове" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Графа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Оцветяване на графите" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Потвърждение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Потвърждение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Контраст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Копирайте линка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Корица" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Създай" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Създайте URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Персонализиран" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Стандартен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Изтриване" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Описание" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Устройства" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Отхвърлете" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Документи" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Пунктирана" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Двойно" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Бързо двойно натискане, за да редактирате" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Дублиран контейнер" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "Ранна регистрация" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Редактирай снимка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Редактирай описание" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Вграждане на изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Вграждане на Youtube видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Вграждане на изображеие в документа." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Вградете видеоклипа от YouTube в документа." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Попълнете" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Филтър" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Единен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Цвят на шрифт " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Формат" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Маршрутизиране" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Горен колонтитул 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Горен колонтитул 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Горен колонтитул 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Горен колонтитул 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Горен колонтитул 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Горен колонтитул 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Заглавие 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Заглавие 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Заглавие 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Заглавие 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Заглавие 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Заглавие 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Височина" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Икона" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Изображения" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Вмъкнете над" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Вмъкнете под" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Вмъкнете вляво" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Вмъкнете вдясно" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Инсталирайте" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Голям" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Последна промяна на" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Последно актуализирано от" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Последно актуализирано на" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Ляв" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Линеен" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Линии" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Линк" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Етикет на линк" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Линк към" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Списък" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Медия" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Преносител" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Име" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Навигация" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Не" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Никакъв" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Нормален" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Отворете в нов прозорец" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Подложка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Позиция" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Преглед" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Първоначален" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Качество" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Цитат" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Поле само за четене" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Отстранете блок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Замени" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Нулиране" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Пълно преоразмеряване " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Преоразмеряване на половината" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Преоразмеряване на четвърт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Дясно" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Запазете" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Разделител" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Сянка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Форма" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Подпис" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Размер" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Малък" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Структура" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Стил" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Предложения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Таблица" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Шаблон на ИН: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Текст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Тема" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Цветове на темите" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Този документ не е запазен!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Заглавие" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Изскачащо съобщение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Трансформирайте картината (натиснете два пъти, за да пренастроите " +"трансформацията)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Преведете" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Вид" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Качете изображение в системата" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Видеа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Преглед" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Широчина" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Напишете нещо..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Да" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "и" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "авто" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "видео материали" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bs.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bs.po new file mode 100644 index 0000000..6590a25 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/bs.po @@ -0,0 +1,3416 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2025-05-08 20:35+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Originalno)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Predloženo)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'Title tag' se prikazuje kao tooltip kada postavite miš preko slike." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ili ugrađivanje)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolone" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 zvijezdice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 kolone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 kolone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 zvijezdica" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blokovi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Prilagodi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Iznad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Prihvaća" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Dodaj Kolonu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Dodaj Red" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Dodaj URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Dodajte blockquote sekciju." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Dodajte dugme." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Dodajte code sekciju." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Dodaj kolonu lijevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Dodaj kolonu desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Dodajte link." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Dodaj red iznad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Dodaj red ispod" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alarm" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Poravnaj Centar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Poravnaj Lijevo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Dodaj URL slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Poravnavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Sve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Sve SCSS Datoteke" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Svi dokumenti su učitani" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Poravnaj u sredinu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Poravnaj lijevo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Ugao" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animirano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anoniman" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Primijeni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Jeste li sigurni da želite obrisati snippet: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Jeste li sigurni da želite obrisati ovu datoteku ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Alternativno učitavanje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Qweb polje monetarno" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Zakačka" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL Zakačke" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automatski konvertuj u relativan link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autopokretanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Nazad na jednu kolonu." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Pozadina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Pozadinska boja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Pažnja" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Osnovica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Veličina pozadinske slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Osnove" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Visina pozadine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Pozicija pozadine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Ponavljanje pozadine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Veličina pozadine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Širina pozadine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Blur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Podebljano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Granica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Boja Granice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Stil Granice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Širina Granice" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Svjetlina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Popis s točkama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Gumb" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Odustani" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Pažnja !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Promjeni opis i tooltip medija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Popis stavki za označavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Izaberite zapis..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Šifra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Boja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filter boja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Uobičajene boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Prikaz koda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Konflikt sadržaja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Konvertuj u 2 kolone." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Konvertuj u 3 kolone." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Konvertuj u 4 kolone." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopiraj link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopiraj i zalijepi URL ili ugradbeni kod ovdje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Nije moguće instalirati modul %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Nije moguće učitati datoteku \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Naslovna slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Kreiraj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Kreirajte listu sa numeriranjem." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Kreirajte jednostavnu listu sa bullet-ima." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Kreirajte URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Crop Slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Prilagođeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Prilagođeni %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Isprekidan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Uobičajeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Default + Zaobljen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definiši prilagođeni gradijent" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Obriši" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Obriši %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Obriši trenutnu tabelu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Uređaji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Odbaci" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Definiraj da li/kako će se pozadinska slika ponavljati" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Da li želite instalirati %s App?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Tačkasto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Duplo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Kliknite dva puta za uređivanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Drag and drop building blok." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Dupliciraj sadržaj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dinamičke Boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dinamički Placeholder" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "GREŠKA: nije moguće dobiti download urls iz media biblioteke." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "Povuci sliku ovdje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Uredi Link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Povuci za pomjeranje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Uredi opis medija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Ugradi Sliku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Ugradi Youtube Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Ugradite sliku u dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Ugradite youtube video u dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Prazan citat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Očekivano " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Proširi do najbližeg ugla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Proširi do najbliže strane" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Proširi do najudaljenijeg ugla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Proširi do najudaljenije strane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Datoteka je upload-ovana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Popuni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Popuni + Zaobljen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Boja Popunjavanja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Prvi Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Datoteka / slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Fleksibilno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Flip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Flip Horizontalno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Flip Vertikalno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Plutajući oblici" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Plutajuće" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Boja fonta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Ne pluta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Pluta desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Puni zaslon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Obitelj fonta" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmjeravanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Header 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Header 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Header 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Header 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Header 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Naslov 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Naslov 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Naslov 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Naslov 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Naslov 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Naslov 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Visina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Sakrij Dailymotion logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Sakrij fullscreen dugme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Sakrij player kontrole" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Sakrij sharing dugme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Sakrij Youtube logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Ikona veličina 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Ikona veličina 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Ikona veličina 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Ikona veličina 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Ikona veličina 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustracije" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Ako resetujete ovu datoteku, sve vaše prilagođavanja će biti izgubljene jer će biti vraćena na defaultnu datoteku." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Visina slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Izvor slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Širina slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Image padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Unesite ocjenu veću od 3 zvjezdice." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Unesite ocjenu veću od 5 zvjezdica." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Insert a table." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Umetni horizontalnu liniju" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Umetni sliku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Umetni link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Umetni video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Dodaj ispod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Umetni lijevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Insert media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Insert or edit link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Insert personalized content" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Umetni desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Insert table" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Insert your signature." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalacija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Install %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Install in progress" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Invalid field value for %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Invisible Elements" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Stavka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS file: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Veliko" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Lijevo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linearno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Stavke" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Poravnaj potpuno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Tipkovni prečaci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link copied to clipboard." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Poveznica na" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Visina linije" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Učitaj više..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Main Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketing Tools" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Datoteka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medijum" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Medium section heading." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "More info about this app." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Pomakni dolje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Pomakni lijevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Pomakni desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Move up" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Moje slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Naziv:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "No URL specified" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nema pronađenih dokumenata." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nema pronađenih slika." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "No location to drop in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "No more records" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nema pronađenih piktograma." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ništa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normalan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Popis s brojevima" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Editor Tests" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Only Custom SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Only Page SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Ne ponavljaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Open in a new tab" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Otvori u novom prozoru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimized" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Originalni (neoptimizovani, nepromjenjene veličine) prilog" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Izvori" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Kontura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Outline + Rounded" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Dopunjavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Page Options" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Paragraph block." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Paste as URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Patterns" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pozicija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Pregled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primarno" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Formatiranje paragrafa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Ponuda" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb polje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb polje kontakt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb polje datum" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "— ili —" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb polje trajanje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb decimalno polje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb polje HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb polje slika" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb polje broj" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb polje mnogo-prema-jedan" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb polje monetarno" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb polje relativno" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb polje izbor" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb polje tekst" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb polje qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Piktogram" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Redirect the user elsewhere when he clicks on the media." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Remove (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Ukloni blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Ukloni trenutno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Ukloni vezu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Ukloni odabranu boju" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Ukloni kolone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Ukloni trenutnu kolonu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Ukloni trenutni red" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Ukloni formatiranje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Ukloni stil fonta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Ukloni sliku" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Ponovi obrazac" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Zamijeni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Zamijeni medij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Resetuj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Resetuj sliku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Ponovi oba" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Resetuj odsjecanje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Ponovi x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Ponovi y" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Veličina - zadano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Veličina - puna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Veličina - polovina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Veličina - četvrtina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotiraj lijevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotiraj desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Red" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS datoteka: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Zasićenost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Sačuvaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Sačuvaj i instaliraj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Sačuvaj i ponovno učitaj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Sačuvaj zapis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Pretraži dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Pronađite piktogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Pronađite sliku" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Pretraži blok (npr. brojevi, zid slika, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Pretraži zapise..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Traži više..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Pretraži da prikaže više zapisa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Pretraži kontakt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Odaberi blok na stranici koji želite urediti." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Odaberi datoteku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Odaberi nadređeni kontejner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Sjena" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Oblik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Odaberi iz datoteka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Oblik: Zaobljeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Oblik: Sličica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Prikaži optimizirane slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Postaviti početnu poziciju pozadinske slike." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Postavlja širinu i visinu pozadinske slike u postotku nadređenog elementa." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Veličina 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Veličina 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Veličina 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Veličina 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Veličina 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Malo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Mali naslov sekcije." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Puna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Pune" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Posebni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Prijedlozi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Promijeni smjer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Vrti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Sto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opcije tabele" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Alati tabele" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Indeks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Eksponent" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Poravnanje teksta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Stil teksta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL ne izgleda kao da radi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL izgleda valjan." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Datum-vrijeme %s ne odgovara formatu %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Formatiranje teksta" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Pruženi url je nevaljan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Tekst za prikaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Boje teme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Postoji konflikt između vaše verzije i one u bazi podataka." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Slika se ne može obrisati jer se koristi na\n sljedećim stranicama ili prikazima:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Ovaj blok je zastario" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dokument nije spremljen!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Ova datoteka je javni prilog pogleda." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Ova datoteka je priložena trenutnom zapisu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Ova slika je vanjska slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Naslov" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Ova datoteka je privitak javnog prikaza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Za napraviti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Ovaj tip slike nije podržan za obrezivanje." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Uključi podebljano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Uključi/isključi listu provjere" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Uključi/isključi rotaciju ikone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Prebaci kurziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Uključi/isključi uređenu listu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Na koji URL treba voditi ovaj link?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Uključi podcrtavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Uključi/isključi neuređenu listu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Savjet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Pratite zadatke sa listom provjere." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformiši" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformiši sliku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Transformiši sliku (kliknite dva puta da resetujete transformaciju)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Prevedi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparentne boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Pokušajte pretraživati s drugom ključnom riječi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Vrsta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Unesite \"/\" za naredbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL ili Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Otkloni poravnanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Transparentno " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Učitajte dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Učitaj sliku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Format učitane slike nije podržan. Pokušajte sa: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Format učitane slike nije podržan. Pokušajte sa: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Neuređena lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatiranje videa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Kod videa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videi su utišani kada je omogućeno automatsko pokretanje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Pregled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Pogledi i paketi resursa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Valovito" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editor konverter podtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor konverter test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgeti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Širina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Napišite nešto..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "Vine.co" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Da" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Trebate navesti ili podatke ili url da biste kreirali prilog." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Vaš URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Xl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Uvećaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Smanji" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "i" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "zatamni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "zadano" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "isključivanje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "osvijetli" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "pomnoži" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "preklapanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videe" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "upravljanje porukama websocketa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ca.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ca.po new file mode 100644 index 0000000..de4c35a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ca.po @@ -0,0 +1,3478 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# eriiikgt, 2022 +# Josep Sànchez , 2022 +# CristianCruzParra, 2022 +# Jonatan Gk, 2022 +# Marc Tormo i Bochaca , 2022 +# RGB Consulting , 2022 +# Josep Anton Belchi, 2022 +# Quim - coopdevs , 2022 +# Eric Rial , 2022 +# Martin Trigaux, 2022 +# Arnau Ros, 2022 +# Cristian Cruz, 2022 +# jabiri7, 2022 +# marcescu, 2022 +# Ivan Espinola, 2023 +# Manel Fernandez Ramirez , 2023 +# Óscar Fonseca , 2023 +# martioodo hola, 2023 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Suggerit)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"L'etiqueta '*Alt' especifica un text alternatiu per a una imatge, si la " +"imatge no pot mostrar-se (connexió lenta, falta d'imatge, lector de " +"pantalla...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"L'\"etiqueta del títol\" es mostra com un tooltip quan es passa per sobre de" +" la imatge." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(Etiqueta ALT)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(Etiqueta Títol)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL o codi incrustat)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 columnes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 estrelles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 columnes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 columnes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 estrelles" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "graus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blocs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Personalitza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"S'ha produït un error en el servidor. Si us plau, comprovi que ha iniciat la" +" sessió correctament i que l'arxiu que està desant està correctament " +"formatat." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Adalt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Accepta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Afegir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Afegir Columna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Afegir Fila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Afegir un URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Afegir una secció de cites en bloc." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Afegir un botó." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Afegir una secció de codi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Afegit una columna a l'esquerra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Afegir una columna a la dreta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Afegir un enllaç." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Afegir una fila a sobre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Afegir una fita a baix" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alerta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Alinear al centre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Alinear a l'esquerre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Alinear a la dreta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alineament" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tots" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Tots els fitxers SCDD" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Tots els documents han sigut carregats" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Totes les imatges s'han carregat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "etiqueta Alt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Angle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anònim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Estàs segur que vols esborrar el fragment: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Estàs segur que vols esborrar el fitxer ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Relació d'aspecte" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Utilidats del actiu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Adjunt" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "L'URL de l'adjunt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Autoconvertir enlace relativo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Reproducció automàtica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Tornar a una columna." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fons" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Color de fons" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Posició de fons" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Blocs bàsics" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Basics" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "A baix" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Encapçalat de secció gran." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloquejar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocs & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Desenfocament" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Negreta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Vora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Color de la vora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Estil de la vora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Amplada de la vora" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Lluminositat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Llista de vinyetes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Botó " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Cancel·lar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Cuidat!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centrar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Canviar la descripció del contingut multimèdia i el tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Llista de verificació" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Tria un disc..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Tancar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Codi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtre de color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Colors" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Columna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Colors comuns" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmació" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflicte de continguts" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Convertir en 2 columnes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Convertir en 3 columnes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Convertir en 4 columnes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copiar enllaç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copia l'URL o el codi incrustat aquí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "No s'ha pogut instal·lar el mòdul %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Coberta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Crear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Crear una llista amb numeració." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Crear una simple llista amb vinyetes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Crear una URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Retallar la imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalitzat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Personalizado %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Moviment diari" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Ratllat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Per defecte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Per defecte + arrodonit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definir un gradient personalitzat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Esborrar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Esborrar taula actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descripció" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispositius" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Descarta el registre" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nom a mostrar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Voleu instal·lar l'aplicació %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documents" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Puntejat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Doble" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Fes doble clic per modificar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Arrossegar i deixar anar els blocs de construcció." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar contenidor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Colors dinàmics" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Placeholder dinàmic" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"ERROR: no s'han pogut obtenir les urls de descàrrega de la llibreria del " +"contingut multimèdia." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Modificar enllaç" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Modificar imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Modificar la descripció del contingut multimèdia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Editar un arxiu integrat a través de l'editor no està aconsellat, ja que " +"evitarà que sigui actualitzat durant futures actualitzacions d'Apps." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Inserir imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Inserir vídeo de YouTube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Inserir la imatge al document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Inserir el vídeo de YouTube al document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Cita buida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Previst" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Estendre fins a la cantonada més propera" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Estendre fins al costat més proper" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Estendre fins a la cantonada més llunyana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Estendre fins al costat més llunyà" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "L'arxiu ha sigut carregat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Omplir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Omplir + Arrodoniment" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Color d'emplenat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Primer panell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Pla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexible" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Voltejar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Voltejar horitzontalment" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Voltejar verticalment" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Formes flotants" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Flotants" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Color de la font" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Grandària de lletra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Per raons tècniques, aquest bloc no es pot deixar anar aquí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formata" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Pantalla Complerta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Troba la imatge perfecta buscant a la nostra llibreria de fotografies i " +"il·lustracions sense copyright." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutament HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Capçalera 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Capçalera 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Capçalera 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Capçalera 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Capçalera 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Capçalera 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Encapçalament 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Encapçalament 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Encapçalament 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Encapçalament 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Encapçalament 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Encapçalament 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Alçada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Amagar el logo de Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Amagar el botó de pantalla completa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Amagar controls del jugador" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Amagar el botó de compartir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formatatge de la icona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Mida d'icona 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Mida d'icona 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Mida d'icona 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Mida d'icona 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Mida d'icona 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Icones" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Si descarta les edicions actuals, es perdran tots els canvis no guardats. " +"Pot cancel·lar per a tornar a la manera d'edició." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Si restableix aquest arxiu, totes les seves personalitzacions es perdran, ja" +" que serà revertit a l'arxiu per defecte." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Il·lustracions" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatatge de la imatge" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Alçada de la imatge" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Font de la imatge" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Amplada de la imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Espaiat de la imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Imatges" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Text en línia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Inserir una puntuació per sobre de 3 estrelles." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Inserir una puntuació per sobre de 5 estrelles." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Inserir una taula." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Inserir una vídeo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Insereix a dalt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Inserir un separador de regla horitzontal." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Inserir una imatge." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Insereix a sota" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Insereix a l'esquerra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Inserir contingut multimèdia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Inserir o modificar enllaç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Inserir contingut personalitzat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Insereix a la dreta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Inserir taula" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Insereix la teva signatura." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instal·lar " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instal·lar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Instal·lació en progrés" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valor no vàlid per a %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Elements invisibles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Element" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Arxiu JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Gran" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Esquerra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Línies" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Enllaç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Etiqueta de l'enllaç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Enllaç copiat al porta-retalls." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Enllaçar amb" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Llista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Carregar més..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Bucle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Color principal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Eines de màrqueting" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Contingut multimèdia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Mitjà" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Encapçalat de secció mitjana." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Més informació sobre aquesta app." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Mou avall" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Mou a l'esquerra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Mou a la dreta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Mou amunt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Les meves imatges" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navegació" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "No" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "No s'ha especificat L'URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "No s'han trobat documents." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "No s'han trobat imatges." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "No hi ha lloc on deixar-ho anar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "No hi ha més registres" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "No s'ha trobat cap pictograma." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Cap" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Llista numerada" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Proves d'editor d'Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Només arxius SCSS personalitzats" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Només arxius SCSS de pàgina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Només vistes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Obrir en una pestanya nova" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Obrir una finestra nova" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimitzat" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Adjunció original (sense optimitzar ni redimensionar)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Orígens" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contorn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Contornejar + Arrodoniment" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Espaiament" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opcions de pàgina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bloc de paràgraf" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Pegar com a URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Patrons" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Posició" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Previsualitza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primari" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Qualitat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Cita" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Camp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Camp de contacte Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Data del camp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Data i hora del camp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Durada del camp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Camp flotant Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Camp Qweb HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Camp d'imatge Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Camp Qweb Sencer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Camp Qweb Molts a Un" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Camp Monetari" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Camp Qweb relatiu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Selecció del camp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Text del camp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Camp Qweb qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Camp de només lectura" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" +"Redirigir l'usuari a altre lloc quan faci clic sobre el contingut " +"multimèdia." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Remoure (ELIMINAR)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Eliminar bloc" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Remoure actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Remoure enllaç" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Remoure el color seleccionat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Remoure columnes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Remoure columna actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Remoure fila actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Remoure format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Elimina l'enllaç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Reanomenar%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Repetir patró" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Reemplaça" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Reemplaça el contingut multimèdia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Reinicia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Reiniciar imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Restablir retall" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Restablir transformació" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Restablir vistes encara no està suportat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Redimensionar a mida predeterminada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Redimensionar a mida completa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Redimensionar a mida mitjana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Redimensionar a un quart de la mida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Dreta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotar a l'esquerra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotar a la dreta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Fila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Arxiu SCCS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturació" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Desar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Desar i instal·lar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Guardar i recarregar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Desar el registre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Cerca un document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Cerca un pictograma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Cerca una imatge" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Cerca un bloc (p. ex. números, mur d'imatges, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Cerca registres..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Cerca més..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Busca més registres" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secundari" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Selecciona un bloc a la teva pàgina per donar-li estil." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Selecciona un contingut multimèdia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separador" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sèpia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Error del servidor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Ombra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forma: Cercle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forma: Arrodonit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Mostrar imatges optimitzades" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Mida" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Mida 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Mida 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Mida 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Mida 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Mida 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Petit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Encapçalat de secció petita." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Sòlid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Sòlids" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Algú amb majors drets ha modificat aquesta àrea abans, per tant, no ho pots " +"modificar." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Especials" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Estructura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Estil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Suggeriments" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Canviar de direcció" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Canviar la direcció del text." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Taula" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opcions de taula" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Eines de taula" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID de plantilla: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Color del text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Alinear el text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Estil de text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Sembla que l'URL no funciona." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "L'URL sembla vàlida." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "La data/hora %s no concorda amb el format%s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"El document ja s'ha desat des d'algú amb un historial diferent per al model " +"%r, camp %r amb la id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "L'URL proporcionat no fa referència a cap vídeo compatible" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "L'URL proporcionada no és vàlida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "L'URL proporcionada no és vàlida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"La versió de la base de dades serà utilitzada.\n" +" Si necessites mantenir els canvis, copia el contingut de baix i modifica el nou document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Colors del tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Hi ha un conflicte entre la teva versió i la de la base de dades." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Aquest URL no és vàlid. La vista prèvia no s'ha pogut actualitzar." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Aquest bloc està obsolet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Aquest document no està guardat!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "L'arxiu és un arxiu adjunt de vista pública." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "L'arxiu està adjunt al registre actual." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Aquesta imatge és una imatge externa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"No es pot retallar aquest tipus d'imatge.
Si vols retallar-la, " +"descarrega-la de la font d'origen i carrega-la a Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Títol" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Etiqueta de títol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Per realitzar canvis, deixa anar aquest bloc i fes server les noves opcions " +"de l'última versió." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Per guardar un snippet, hem de guardar totes les teves modificacions prèvies" +" i refrescar la pàgina." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Per fer" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Tostadora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Alternar negretes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Alternar llista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Alternar gir d'icona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Alternar cursiva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Alternar llista ordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Alternar ratllat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Alternar subratllat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Alternar llista desordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Informació sobre eines" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Portar el seguiment de tasques amb una llista de pendents." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformar la fotografia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transforma la imatge (fes clic dos cops per reiniciar la transformació)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traduir " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Colors transparents" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Proveu de cercar amb altres paraules clau." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Escrigui \"/\" per a accedir a les comandes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL or Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Desalinear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Inesperat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Carregar un document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Carregar una imatge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "El format de la imatge carregada no és compatible. Provi amb:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "El format de la imatge carregada no és compatible. Provi amb: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "València" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatatge de vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Codi de vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Vídeos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"Els vídeos estan silenciats quan la reproducció automàtica està habilitada" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Paquets de vistes i actius" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Advertència: després de tancar aquest quadre de diàleg, es descartarà la " +"versió en la qual estaves treballant i mai tornarà a estar disponible." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Wavy" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Subprova de convertidor de l'editor web" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Prova de convertidor de l'editor web" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Amplada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Escriviu alguna cosa..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Sí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Pots pujar documents amb el botó localitzat a dalt a l'esquerra de la " +"pantalla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Pots pujar imatges amb el botó localitzat a dalt a l'esquerra de la " +"pantalla." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Heu d'especificar la data o l'URL per crear un arxiu adjunt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "La seva URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Apropa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Allunya" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "afegeix" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "i" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "enfosquir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "per defecte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusió" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "aclarir" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplicar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "superposar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "pantalla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "vídeos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "gestió de missatges websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/cs.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/cs.po new file mode 100644 index 0000000..2cb6df8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/cs.po @@ -0,0 +1,3461 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Jaroslav Helemik Nemec , 2022 +# Rastislav Brencic , 2022 +# Michal Veselý , 2022 +# Damian Brencic , 2022 +# Jiří Podhorecký , 2022 +# karolína schusterová , 2022 +# Jan Horzinka , 2022 +# Martin Trigaux, 2023 +# Ivana Bartonkova, 2023 +# Jakub Smolka, 2023 +# Aleš Fiala , 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Originál)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Doporučeno)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' specifikuje alternativní text pro obrázek, pokud jej nelze " +"zobrazit (pomalé připojení, chybějící obrázek, čtečka obrazovky ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "Při najetí kurzorem na obrázek se zobrazí \"Popisek\"." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL nebo Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 sloupce" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 hvězdičky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 sloupce" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 sloupce" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 hvězdiček" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "stupňů" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Bloky" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Přizpůsobit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Došlo k chybě serveru. Zkontrolujte, zda jste správně přihlášeni a zda je " +"soubor, který ukládáte, správně naformátován." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Výše" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Přijmout" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Přidat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Přidat sloupec" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Přidat řádek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Přidat URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Přidat sekci blockquote." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Přidat tlačítko." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Přidat kód sekce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Přidat sloupec vlevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Přidat sloupec vpravo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Přidat odkaz." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Přidat řádek výše" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Přidat řádek níže" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Výstraha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Zarovnat na střed" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Zarovnat vlevo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Zarovnat vpravo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Zarovnání" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Vše" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Všechny SCSS soubory" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Všechny dokumenty byly načteny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Byly načteny všechny obrázky" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt značka" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Úhel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animovaný" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonymní" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Použít" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Opravdu chcete snippet %s odstranit:?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Opravdu chcete tento soubor smazat?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Poměr stran" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Majetek utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Příloha" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Adresa URL přílohy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automaticky převést na relativní odkaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automatické přehrávání" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Zpět na jeden sloupec." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Pozadí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Barva pozadí" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Pozice pozadí" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Základní část" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Základní bloky" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Základní" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Níže" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Velký nadpis sekce." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocks & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Blur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Tučný" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Rámeček" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Barva ohraničení" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Styl okraje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Šířka ohraničení" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Jas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Seznam s odrážkami" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Tlačítko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Zrušit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Opatrně!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Střed" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Změnit popis médií a tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Kontrolní seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Vyberte záznam..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zavřít" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kód" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Barva" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Barevný filtr" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Barvy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Sloupec" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Běžné barvy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Potvrzení" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Konflikt obsahu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Převést na 2 sloupce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Převést na 3 sloupce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Převést na 4 sloupce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopírovat odkaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Zkopírujte a vložte svou adresu URL nebo vložte kód zde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Nelze nainstalovat modul %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Obálka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Vytvořit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Vytvořit seznam s číslováním." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Vytvořte jednoduchý seznam s odrážkami." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Vytvořit URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Oříznout obraz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Vlastní" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Přizpůsoben %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Přerušovaná" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Výchozí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Výchozí + zaokrouhlit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definujte vlastní přechod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Smazat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Smazat %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Smazat aktuální tabulku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Popis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Zařízení" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Zrušit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Zahodit záznam" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Chcete nainstalovat aplikaci %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Tečkovaná" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dvojitá" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Poklepáním upravte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Přetáhněte stavební blok." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicitní kontejner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamické barvy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamický zástupce" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "CHYBA: nelze získat adresy URL ke stažení z knihovny médií." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Upravit odkaz" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Upravit obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Upravit popis médií" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Úpravy vestavěného souboru prostřednictvím tohoto editoru se nedoporučují, " +"protože to zabrání jeho aktualizaci během budoucích upgradů aplikací." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Vložit obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Vložit Youtube video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Vložit obrázek do dokumentu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Vložit youtube video do dokumentu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Prázdná citace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Očekávaný" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Prodloužit k nejbližšímu rohu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Prodloužit k nejbližší straně" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Prodloužit ke vzdálenějšímu rohu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Prodloužit ke vzdálenější straně" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Soubor byl aktualizován" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Vyplnit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Vyplnit + zaokrouhlit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Vyplň barvu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtr" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "První panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Paušál" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexibilní" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Převrátit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Počet nepřečtených zpráv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Převrátit svisle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Plovoucí tvary" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Desetinné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Barva písma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Velikost písma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Z technických důvodů zde tento blok nelze vypustit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formát" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Celá obrazovka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Získejte skvělé obrázky prohledáním naší knihovny fotografií a ilustrací bez" +" autorských práv." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Přechod" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Nadpis 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Nadpis 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Nadpis 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Nadpis 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Nadpis 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Nadpis 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Nadpis 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Nadpis 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Nadpis 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Nadpis 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Nadpis 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Nadpis 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Výška" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Skrýt logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Skrýt tlačítko na celou obrazovku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Skrýt ovládací prvky přehrávače" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Skrýt tlačítko sdílení" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formátování ikony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Ikona velikost 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Ikona velikost 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Ikona velikost 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Ikona velikost 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Ikona velikost 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Pokud aktuální úpravy zahodíte, všechny neuložené změny budou ztraceny. " +"Zrušením se vrátíte do režimu úprav." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Pokud tento soubor resetujete, všechna přizpůsobení budou ztracena, protože " +"budou vrácena na výchozí soubor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustrace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formátování obrázku" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Výška obrazu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Image Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Image Width" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Výplň obrázku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Obrázky" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Vložený text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Vložte hodnocení nad 3 hvězdičky." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Vložte hodnocení nad 5 hvězdiček." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Vložit tabulku." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Vložit video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Vložit výše" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Vložte vodorovný oddělovač." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Vložit obrázek." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Vložit níže" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Vložit vlevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Vložit média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Vložit nebo upravit odkaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Vložit personalizovaný obsah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Vložit vpravo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Vložit tabulku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Vložte svůj podpis." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalovat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instalovat %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Probíhá instalace" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Neplatná hodnota pole pro %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Neviditelné prvky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Položka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS soubor: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Velký" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno od" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Vlevo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineární" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Řádky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Odkaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Visačka odkazu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Odkaz byl zkopírován do schránky." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Odkaz na" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Načíst další..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Smyčka" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Hlavní barva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketingové nástroje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Médium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Střední nadpis sekce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Více informací o této aplikaci." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Přesunout dolů" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Pohyb doleva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Pohyb vpravo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Přesunout nahoru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Moje obrázky" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Jméno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Nebyla zadána žádná adresa URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nebyly nalezeny žádné dokumenty." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nebyly nalezeny žádné obrázky." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Žádné místo k vložení" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Žádné další záznamy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nebyly nalezeny žádné piktogramy." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nic" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normální" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Číslovaný seznam" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Testy Odoo editoru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Pouze vlastní soubory SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Pouze soubory SCSS na stránce" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Pouze pohledy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Otevřít na nové kartě" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Otevřít v novém okně" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimalizováno" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Originální (neoptimalizovaná, nezměněná) příloha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Zdroje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Obrys" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Obrys + zaoblený" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Výplň" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Možnosti stránky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Blok odstavce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Vložit adresu URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Vzory" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pozice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Náhled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Hlavní" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Co to sakra dělá ta palačinka, svatostánek?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Že nedorazil do Toronta" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Že měl přijet do Toronta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Jakost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citace" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb pole" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb Field Contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Datum pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb pole datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Trvání pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Plovoucí pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "HTML pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Obrázek pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Celočíselné pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb pole mnoho ku jedné" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb pole peněžní" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Relativní pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Výběr pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Text pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb pole qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radiální" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Pole jen pro čtení" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Přesměrovat uživatele jinam, když klikne na média." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Odebrat (SMAZAT)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Odstranit blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Odebrat aktuální" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Odebrat odkaz" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Odebrat vybranou barvu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Odebrat sloupec" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Odebrat aktuální sloupec" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Odebrat aktuální řádek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Odebrat formát" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Odebrat odkaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Přejmenovat %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Opakujte vzor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Nahradit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Vyměnit medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Resetovat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Obnovit obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Obnovit velikost" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Obnovit ořez" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Obnovit transformaci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Obnovení zobrazení zatím není podporováno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Změnit výchozí velikost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Změnit velikost celého" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Změna velikosti poloviny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Změnit velikost čtvrtletí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Vpravo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Otočit doleva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Otočit doprava" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Řádek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS soubor: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Sytost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Uložit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Uložit a nainstalovat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Uložit a obnovit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Uložit záznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Prohledejte dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Vyhledat piktogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Hledejte obrázek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Hledat blok (např. čísla, obrázková zeď, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Hledat záznamy..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Vyhledat více..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Vyhledejte pro zobrazení více záznamů" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekundární" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Vyberte blok na stránce, který chcete upravit." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Vyberte média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Oddělovač" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Chyba serveru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Stín" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Tvar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Tvar: Kruh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Tvar: Kulatý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Tvar: Miniatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Zobrazit optimalizované obrázky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Podpis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Velikost" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Velikost 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Velikost 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Velikost 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Velikost 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Velikost 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Malý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Malý nadpis sekce." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Pevný" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Pevné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Někdo s eskalovanými právy dříve upravil tuto oblast, nemůžete ji proto " +"upravit sami." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Speciální" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Styl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Návrhy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Přepnout směr" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Přepnout směr textu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabulka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Možnosti tabulky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Nástroje tabulky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID šablony: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Barva textu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Zarovnání textu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Styl textu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Zdá se, že adresa URL nefunguje." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "Zdá se, že adresa URL je platná." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Datum a čas %s neodpovídá formátu %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Dokument již byl uložen od někoho s jinou historií pro model %r, pole %r s " +"id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Zadaná adresa URL neodkazuje na žádné podporované video" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Zadaná adresa URL je neplatná" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Zadaná adresa URL není platná" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Použije se verze z databáze.\n" +" Pokud si změny potřebujete ponechat, zkopírujte obsah níže a upravte nový dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Téma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Barvy motivu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Mezi vaší verzí a verzí v databázi je konflikt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Tato adresa URL je neplatná. Náhled se nepodařilo aktualizovat." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Tento blok je zastaralý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Tento dokument není uložen!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Tento soubor je veřejně viditelnou přílohou" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Tento soubor je připojen k aktuálnímu záznamu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Tento obrázek je externí obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"U tohoto typu obrázku není oříznutí podporováno.
Chcete-li jej " +"oříznout, nejprve si jej stáhněte z původního zdroje a nahrajte do Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Název" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Štítek názvu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Chcete-li provést změny, zrušte tento blok a použijte nové možnosti v " +"poslední verzi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Abychom mohli úryvek uložit, musíme uložit všechny vaše předchozí úpravy a " +"stránku znovu načíst." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Úkolníček" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toastovač" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Přepnout tučné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Přepnout kontrolní seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Přepnout otáčení ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Přepnout kurzívu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Přepnout seřazený seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Přepnout přeškrtnuté" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Přepnout podtržení" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Přepnout neseřazený seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Kontextová nápověda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Sledujte úkoly pomocí kontrolního seznamu." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformovat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformovat obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Transformovat obrázek (dvakrát klikněte pro reset transformace)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "přeložit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Průhledná barva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Zkuste hledat pomocí jiných klíčových slov." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Typ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Zadejte \"/\" pro příkazy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL nebo e-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Nesrovnat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Neočekávané" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Nahrát dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Nahrát obrázek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Formát nahraného obrázku není podporován. Zkuste s: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Formát nahraného obrázku není podporován. Zkuste s: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formátování videa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video kód" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Když je povoleno automatické přehrávání, videa jsou ztlumena" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Pohled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Balíčky zobrazení a majetku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Varování: po zavření tohoto dialogu bude verze, na které jste pracovali, " +"zahozena a již nikdy nebude dostupná." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Vlnitý" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Podtest konvertoru webového editoru" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Test konvertoru webového editoru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgety" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Šířka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Napište něco..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Dokumenty můžete nahrávat pomocí tlačítka umístěného v levé horní části " +"obrazovky." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Můžete nahrávat obrázky pomocí tlačítka umístěného v levé horní části " +"obrazovky." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Chcete-li vytvořit přílohu, musíte zadat buď data, nebo adresu URL." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Vaše URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Přiblížit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Oddálit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "přidat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "and" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automaticky" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "ztmavit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "výchozí" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "vyloučení" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "světlejší" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "násobit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "překrýt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "screen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videa" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "zpráva zpracování websocketu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.priklad.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/da.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/da.po new file mode 100644 index 0000000..3bb3b4d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/da.po @@ -0,0 +1,3450 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Pernille Kristensen , 2022 +# Mads Søndergaard, 2022 +# lhmflexerp , 2022 +# Mads Søndergaard, 2022 +# Martin Trigaux, 2023 +# JonathanStein , 2023 +# Sammi Iversen , 2024 +# Sanne Kristensen , 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Foreslået)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' specificerer en alternativ tekst for et billedet, hvis billedet " +"ikke kan vises (langsom forbindelse, manglende billede, skærm læser ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'Titel tag' vises som et tooltip når du holder musen over billedet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITEL Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL or Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolonner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 stjerner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 kolonner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 kolonner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 stjerner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "grader" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blokke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Tilpas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Der opstod en server fejl. Check venligst om du er korrekt logget ind, og at" +" filen du er ved at gemme er korrekt formateret." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Over" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Accepter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Tilføj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Tilføj kolonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Tilføj Række" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Tilføj URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Tilføj en knap" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Tilføj en kolonne til venstre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Tilføj en kolonne til højre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Tilføj et link." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Tilføj en række over" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Tilføj en række under" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Luftig & Zigzaggende" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Advarsel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Centrer" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Venstrestil" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Højrestil" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Justering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Alle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Alle SCSS filer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Alle dokumenter er blevet indlæst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "All billeder er blevet indlæst" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Vinkel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animeret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonym" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Anvend" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Er du sikker på du vil slette snippet: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Er du sikker på, du vil slette denne fil?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Billedformat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Hjælpeaktiver " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Vedhæftning" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Vedhæftet URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Konvertér automatisk til relativt link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autoafspilning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Baggrund" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Baggrundsfarve" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Baggrund Position" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Basis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Grundlæggende blokke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Under" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokér" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blokke & Regnfuld" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Slør" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Fed" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Grænse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Kant Farve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Kantstil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Kant Bredde" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Lysstyrke" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Punktliste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Knap" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Annullér" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Forsigtig!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Midten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Ændring af beskrivelse og værktøjstip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checkliste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Vælg en post..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Luk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Farve" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Farvefilter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Farver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Almindelige farver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Bekræft" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Bekræftelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopiér link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopier-sæt ind din URL eller indlejr koden her" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Kunne ikke installere modulet %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Kunne ikke indlæse filen \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Dækker" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Opret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Opret en nummereret liste." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Opret en simpel punktopstilling." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Opret en URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Beskær billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Tilpasset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Tilpasset %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Streget" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Standard" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Standard + Afrundet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Slet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Slet %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Slet aktuel tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Beskrivelse" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Enheder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Kassér" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Kassér post" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Vil du installere %s applikationen?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Prikket" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dobbelt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Dobbelt klik for at redigere" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Træk og slip byggeklodsen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplikér område" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamiske farver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamisk placeholder" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "FEJL: Kunne ikke hente URL fra medie bibliotek." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Redigér link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Rediger billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Rediger medie beskrivelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Redigering af en indbygget fil via dette redigeringsværktøj er ikke " +"tilrådet, eftersom det vil forhindre det fra at blive opdateret under " +"fremtidige applikation opdateringer." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Indsæt billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Indsæt Youtube video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Indsæt billedet i dokumentet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Indsæt Youtube videoen i dokumentet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Tomt citat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Forventet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Udvid til det nærmeste hjørne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Udvid til den nærmeste side" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Udvid til det fjerneste hjørne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Udvid til den fjerneste side" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Filen er uploaded" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Udfyld" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Fyld + Afrundet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Fyld Farve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Første Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Fast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Fleksibel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Vend horisontalt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Vend vertikalt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Flydende former" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Font farve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Skrifttype størrelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Af tekniske årsager kan denne blok ikke indsættes her" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Fuld skærm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Få det perfekte billede ved at søge i vores bibliotek af gratis fotos og " +"illustrationer." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Overskrift 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Overskrift 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Overskrift 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Overskrift 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Overskrift 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Overskrift 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Overskrift 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Overskrift 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Overskrift 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Overskrift 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Overskrift 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Overskrift 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Højde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Skjul Dailymotion logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Skjul fuldskærms knappen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Skjul afspilnings kontrolmuligheder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Skjul knap til deling" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Ikonformatering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Ikonstørrelse 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Ikonstørrelse 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Ikonstørrelse 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Ikonstørrelse 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Ikonstørrelse 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Hvis du kassere de nuværende redigeringer, vil alle ændringer der ikke er " +"gemte gå tabt. Du kan annullere for at vende tilbage til redigerings " +"tilstand." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Hvis du nulstiller denne fil, vil alle dine tilpasninger gå tabt, eftersom " +"den gendannes til standard filen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustrationer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Billedformatering" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Billedhøjde" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Billede killede" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Billedbredde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Billeder" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Indsæt en tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Indsæt en video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Indsæt ovenover" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Indsæt et billede." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Indsæt nedenfor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Indsæt venstre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Indsæt eller redigér link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Indsæt personligt indhold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Indsæt højre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Indsæt tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Installer %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installation i gang" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Ugyldig feltværdi for %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Usynlige Elementer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Genstand" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS fil: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Stor" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Venstre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineær" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Linjer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Linktekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link kopieret til udklipsholder." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Link til" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Liste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Indlæs mere..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Løkke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Hovedfarve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Medie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Mellem afsnitsoverskrift" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Mere info om denne applikation." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Flyt ned" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Flyt til venstre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Flyt til højre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Flyt op" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Mine Billeder" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Navn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Ingen URL angivet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Ingen dokumenter fundet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Ingen billeder fundet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Intet sted at sætte ind" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Ikke flere poster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ingen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Nummereret liste" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Kun tilpassede SCSS filer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Kun side SCSS filer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Kun visninger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Åbn i nyt vindue" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimeret" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Oprindelig (ikke-optimeret, oprindelig størrelse) vedhæftning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Kilder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Omrids" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Omrids + Afrundet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Indsæt som URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Mønstre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Stilling" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Eksempel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primære" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvalitet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb felt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb felt kontakt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb felt dato" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb felt dato og tid" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb felt varighed" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb felt kommatal" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb felt HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb felt billede" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb felt heltal" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb felt Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb felt monetær" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb felt relativ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb felt valg" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb felt tekst" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb felt qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Readonly felt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Fjern (SLET)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Slet blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Fjern aktuel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Fjern link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Fjern valgt farve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Fjern aktuel kolonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Fjern aktuel række" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Fjern formatering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Fjern link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Omdøb %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Gentag mønster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Erstat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Erstat medie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Nulstil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Nulstil billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Nulstil beskæring" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Nulstil ændring" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Nulstilling af visninger er endnu ikke understøttet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Tilpas til fuld størrelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Tilpas til halv størrelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Tilpas til kvart størrelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Højre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotér venstre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotér højre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Række" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS fil: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Mætning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Gem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Gem og Installer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Gem og Genindlæs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Gem post" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Søg i et dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Søg i et pictogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Søg et billede" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Søg efter poster..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Søg flere..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Søg for at vise flere poster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Anden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Serverfejl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Skygge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Form" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Form: Cirkel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Form: Afrundet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Form: Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Vis optimerede billeder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signatur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Størrelse" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Størrelse 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Størrelse 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Størrelse 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Størrelse 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Størrelse 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Lille" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Lille afsnitsoverskrift." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Fast" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Style" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Forslag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Skift retning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Skifter tekstretning." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Tabelværktøker" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Skabelon ID %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Tekst Farve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Tekstjustering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Tekststil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL'en ser ikke ud til at fungere." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL'en ser gyldig ud." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Den angivne URL henviser ikke til en understøttet video" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Den angivne url er ikke gyldig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Temafarver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Denne URL er ugyldig. Forhåndsvisning kunne ikke opdateres." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Denne blok er uddateret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dette dokument er ikke gemt!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Denne fil er en offentlig visnings vehæftning." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Denne fil er vedhæftet det nuværende datasæt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Dette billede er et eksternt billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Dette type billede understøtter ikke beskæring.
Hvis du vil beskære det," +" bedes du først hente det fra dets oprindelige kilde, og lægge det op i " +"Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Slip denne blok og brug de nye indstillinger i sidste version, for at " +"foretage ændringer." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"For at gemme en snippet, skal vi gemme alle dine tidligere modificeringer og" +" genindlæse siden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Brødrister" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Værktøjstip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Omdan billedet (klik to gange for at nulstille omdannelsen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Oversæt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparente farver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Type" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Skriv \"/\" for kommandoer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL eller e-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Uventet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Upload et dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Upload et billede" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Videoformatering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Videokode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videoer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videoer er uden lyd, når autoafspilning er aktiveret" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Visninger og aktiver bundter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Bølget" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editor Converter Subtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor Converter Test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Bredde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Skriv noget..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "Du kan uploade dokumenter med knappen øverst til venstre i skærmen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "Du kan uploade billeder med knappen øverst til venstre i skærmen." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" +"Du skal specificere enten data eller URL for at oprette en vedhæftning." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Din URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zoom Ind" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zoom Ud" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "tilføj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "og" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "formørk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "standard" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "udeluk" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "lysne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplicér" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "overlæg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "skærm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videoer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/de.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/de.po new file mode 100644 index 0000000..cd5652f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/de.po @@ -0,0 +1,3473 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Friederike Fasterling-Nesselbosch, 2022 +# Stefan Reisich , 2023 +# Martin Trigaux, 2023 +# Wil Odoo, 2025 +# Larissa Manderfeld, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Larissa Manderfeld, 2025\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (empfohlen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"„Alt-Tag“ gibt einen alternativen Text für ein Bild an, wenn das Bild nicht " +"angezeigt werden kann (langsame Verbindung, fehlendes Bild, Bildschirmleser " +"...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"„Titel-Tag“ wird als Tooltipp angezeigt, wenn Sie den Mauszeiger über das " +"Bild halten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT-Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE-Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL oder Einbetten)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100 %" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 Spalten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25 %" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Sterne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 Spalten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 Spalten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Sterne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50 %" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "Grad" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blöcke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Anpassen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Ein Serverfehler ist aufgetreten. Bitte überprüfen Sie, ob Sie korrekt " +"angemeldet sind und ob die von Ihnen gespeicherte Datei korrekt formatiert " +"ist." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Oben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Akzeptiert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Spalte hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Zeile hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URL hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Einen Blockzitatabschnitt hinzufügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Eine Schaltfläche hinzufügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Einen Code-Abschnitt hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Spalte links hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Spalte rechts hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Einen Link hinzufügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Zeile oberhalb hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Zeile unterhalb hinzufügen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Dünn & Zickzack" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Warnung" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Zentriert ausrichten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Links ausrichten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Rechts ausrichten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Ausrichtung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Alle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Alle SCSS-Dateien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Alle Dokumente wurden geladen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Alle Bilder wurden geladen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt-Tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Winkel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animiert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonym" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Anwenden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Sind Sie sicher, dass Sie das Snippet löschen möchten: %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Möchten Sie diese Datei wirklich löschen?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Bildseitenverhältnis" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Dateianhang" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Dateianhang-URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automatisch in einen relativen Link konvertieren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automatisch abspielen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Zurück zu einer Spalte." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Hintergrund" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Hintergrundfarbe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Hintergrundposition" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Basis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Basisblöcke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Basics" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Unten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Große Abschnittsüberschrift." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Kleckse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Block" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blöcke & Regnerisch" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Unschärfe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Fett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Rand" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Randfarbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Umrandungsstil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Randbreite" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Helligkeit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Aufzählungsliste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Schaltfläche" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Abbrechen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Vorsicht!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Zentriert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Medienbeschreibung und Tooltipp ändern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checkliste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Datensatz wählen ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Schließen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Farbe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Farbfilter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Farben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Spalten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Übliche Farben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Bestätigen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Bestätigung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Inhaltlicher Konflikt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "In 2 Spalten umwandeln." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "In 3 Spalten umwandeln." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "In 4 Spalten umwandeln." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Link kopieren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Fügen Sie URL oder Einbettungscode hier ein." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Modul %s konnte nicht installiert werden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Datei „%s“ konnte nicht geladen werden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Titelbild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Erstellen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Eine Liste mit Nummerierung erstellen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Erstellen Sie eine einfache Aufzählungsliste." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Eine URL erstellen." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Bild zuschneiden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Benutzerdefiniert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Benutzerdef. %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Gestrichelt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Standard" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Standard + Gerundet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definieren eines benutzerdefinierten Farbverlaufs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Löschen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "%s löschen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Aktuelle Tabelle löschen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Beschreibung" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Geräte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Verwerfen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Datensatz verwerfen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Möchtest Sie die App „%s“ installieren?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Gepunktet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Doppelt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Zum Bearbeiten doppelt klicken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Baustein per Drag & Drop verschieben." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Inhaltsblöcke duplizieren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamische Farben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamische Platzhalter" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"FEHLER: URLs konnten nicht aus Medienbibliothek heruntergeladen werden." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Link bearbeiten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Bild bearbeiten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Medienbeschreibung bearbeiten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Es ist nicht ratsam, eine integrierte Datei mit diesem Editor zu bearbeiten," +" da sie sonst bei zukünftigen App-Upgrades nicht mehr aktualisiert werden " +"kann." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Bild einbetten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Youtube-Video einbetten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Bild in Dokument einbetten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Youtube-Video in Dokument einbetten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Leeres Zitat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Erwartet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Erweitern bis zur nächsten Ecke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Erweitern bis zur nächsten Seite" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Erweitern bis zur äußersten Ecke" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Erweitern bis zur äußersten Seite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Datei wurde hochgeladen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Füllen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Füllen + Gerundet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Füllfarbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Erstes Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Flach" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexibel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Umdrehen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Horizontal drehen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Vertikal drehen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Schwebende Formen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Schwebend" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Schriftfarbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Schriftgröße" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" +"Aus technischen Gründen kann dieser Baustein hier nicht abgelegt werden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Vollbild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Finden Sie das perfekte Bild, indem Sie in unserer Bibliothek mit " +"urheberrechtsfreien Fotos und Illustrationen durchsuchen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Farbverlauf" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Kopfzeile 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Kopfzeile 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Kopfzeile 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Kopfzeile 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Kopfzeile 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Kopfzeile 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Überschrift 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Überschrift 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Überschrift 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Überschrift 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Überschrift 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Überschrift 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Höhe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotion-Logo ausblenden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Vollbild-Schaltfläche ausblenden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Spielersteuerung ausblenden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Teilen-Schaltfläche ausblenden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Symbol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Symbol-Formatierung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Symbolgröße 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Symbolgröße 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Symbolgröße 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Symbolgröße 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Symbolgröße 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Symbole" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Wenn Sie die aktuellen Bearbeitungen verwerfen, gehen alle nicht " +"gespeicherten Änderungen verloren. Sie können abbrechen, um zum " +"Bearbeitungsmodus zurückzukehren." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Wenn Sie diese Datei zurücksetzen, gehen alle Ihre Anpassungen verloren, da " +"sie auf die Standarddatei zurückgesetzt wird." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustrationen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Bildformatierung" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Bildhöhe" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Bildquelle" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Bildbreite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Bildabstand" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Bilder" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline-Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Eine Bewertung von 3 Sternen einfügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Eine Bewertung von 5 Sternen einfügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Tabelle einfügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Video einfügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Oben einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Einfügen eines horizontalen Trennstrichs." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Ein Bild einfügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Unten einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Links einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Medium einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Link einfügen oder bearbeiten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Personalisierten Inhalt einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Rechts einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Tabelle einfügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Ihre Unterschrift einfügen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installieren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "%s Installieren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installation läuft" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Ungültiger Feldwert für %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Unsichtbare Elemente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Element" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS-Datei: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Groß" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Letzte Änderung am" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Links" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linear" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Linien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Linkbeschriftung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link in Zwischenablage kopiert." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Link zu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Liste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Mehr laden ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Schleife" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Hauptfarbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketingtools" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Medien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Mittel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Mittelgroße Abschnittsüberschrift." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Mehr Infos über diese App." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Nach unten verschieben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Nach links bewegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Nach rechts bewegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Nach oben verschieben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Meine Bilder" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Name" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nein" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Keine URL spezifiziert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Keine Dokumente gefunden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Keine Bilder gefunden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Kein Ablageort verfügbar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Keine weiteren Datensätze" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Keine Piktogramme gefunden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Keine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Nummerierte Liste" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo-Editor-Tests" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Nur angepasste SCSS-Dateien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Nur Seiten-SCSS-Dateien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Nur Ansichten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "In neuem Tab öffnen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "In einem neuen Fenster öffnen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimiert" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Originaler (nicht optimierter, nicht verkleinerter) Anhang" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Ausgangspunkte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Kontur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Kontur + Gerundet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Auffüllung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Seitenoptionen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Absatzblock." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Als URL einfügen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Muster" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Position" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Vorschau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primär" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Qualität" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Zitat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb-Feld" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb-Feld Kontakt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb-Feld Datum" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb-Feld Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb-Feld Dauer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb-Feld Gleitkommazahl" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb-Feld HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb-Feld Bild" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb-Feld Ganzzahl" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb-Feld Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb-Feld Monetär" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb-Feld Relativ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb-Feld Auswahl" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb-Feld Text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb-Feld qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Schreibgeschütztes Feld" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" +"Leiten Sie den Nutzer an eine andere Stelle weiter, wenn er auf das Medium " +"klickt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Entfernen (LÖSCHEN)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Block entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Aktuelle entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Link entfernen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Ausgewählte Farbe entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Spalten entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Aktuelle Spalte entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Aktuelle Zeile entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Format entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Link entfernen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "%s umbennen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Muster wiederholen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Ersetzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Medien ersetzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Zurücksetzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Bild zurücksetzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Größe zurücksetzen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Crop zurücksetzen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Umwandlung zurücksetzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Das Zurücksetzen der Ansichten wird noch nicht unterstützt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Standardgröße anpassen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Vollansicht" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Halbansicht" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Viertelansicht" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Rechts" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Nach links drehen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Nach rechts drehen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Zeile" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS-Datei: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Sättigung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Speichern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Speichern und installieren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Speichern und neu laden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Datensatz speichern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Ein Dokument suchen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Ein Piktogramm suchen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Ein Bild suchen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Nach einem Baustein suchen (z. B. Zahlen, Bilderwand ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Nach Datensätzen suchen ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Mehr suchen ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Suchen, um mehr Datensätze anzuzeigen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekundär" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Wählen Sie einen Block auf Ihrer Seite aus und gestalten Sie ihn." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Ein Medium auswählen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Trennlinie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Serverfehler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Schatten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Form" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Form: Kreis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Form: Gerundet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Form: Vorschaubild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Optimierte Bilder anzeigen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signatur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Größe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Größe 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Größe 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Größe 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Größe 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Größe 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Klein" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Kleine Abschnittsüberschrift." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Voll" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Volumenmodelle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Jemand mit erweiterten Rechten hat diesen Bereich zuvor geändert, Sie können" +" ihn also nicht selbst ändern." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Specials" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Vorschläge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Ausrichtung ändern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Textausrichtung ändern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabelle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Tabellenoptionen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Tabellentools" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Vorlagen-ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Textfarbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Textausrichtung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Textstil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Die URL scheint nicht zu funktionieren." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "Die URL scheint gültig zu sein." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Datum/Zeit %s stimmt nicht mit dem Format %s überein." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Das Dokument wurde bereits von jemandem mit einer anderen Historie für " +"Modell %r, Feld %r mit der ID %r gespeichert." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Die angegebene URL referenziert kein unterstütztes Video." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Die angegebene URL ist ungültig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Die angegebene URL ist nicht gültig." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Es wird die Version aus der Datenbank verwendet.\n" +"Wenn Sie Ihre Änderungen beibehalten wollen, kopieren Sie den Inhalt unten und bearbeiten Sie das neue Dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Designmotiv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Designmotivfarben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" +"Es gibt einen Konflikt zwischen Ihrer Version und der Version in der " +"Datenbank." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Die URL ist ungültig. Vorschau konnte nicht aktualisiert werden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Dieser Block ist veraltet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Das Dokument ist nicht gespeichert!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Diese Datei ist ein öffentlich zugänglicher Anhang." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Diese Datei ist an den aktuellen Datensatz angehängt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Dieses Bild ist ein externes Bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Diese Art von Bild wird nicht für das Zuschneiden unterstützt.
Wenn Sie " +"das Bild zuschneiden möchten, laden Sie es bitte zuerst von der " +"Originalquelle herunter und dann in Odoo hoch." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Titel-Tag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Um Änderungen vorzunehmen, lassen Sie diesen Baustein fallen und verwenden " +"Sie die neuen Optionen der letzten Version." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Um ein Snippet zu speichern, müssen wir alle vorherigen Änderungen speichern" +" und die Seite neu laden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Fett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Checkliste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Symboldrehung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Kursiv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Nummerieren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Durchstreichen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Unterstreichen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Aufzählungszeichen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tooltipp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Aufgaben mit einer Checkliste verfolgen." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformieren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Bild verwandeln" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Bild transformieren (Doppelklick zum Zurücksetzen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Übersetzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparente Farben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Probieren Sie es mit anderen Stichwörtern." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Typ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Geben Sie „/“ für Befehle ein" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL oder E-Mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Ausrichtung aufheben" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Unerwartet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Dokument hochladen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Ein Bild hochladen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" +"Das Format des hochgeladenen Bildes wird nicht unterstützt. Versuchen Sie es" +" mit:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" +"Das Format des hochgeladenen Bildes wird nicht unterstützt. Versuchen Sie es" +" mit: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Video-Formatierung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Videocode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videos werden stummgeschaltet, wenn Autoplay aktiviert ist" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Ansicht" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Bündel von Ansichten und Assets" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Achtung: Nach dem Schließen dieses Dialogs wird die Version, an der Sie " +"gearbeitet haben, verworfen und ist nicht mehr verfügbar." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Wellig" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Subtest des Web-Editor-Konverters" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Test des Web-Editor-Konverters" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Breite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Schreiben Sie etwas ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Sie können Dokumente über die Schaltfläche oben links auf dem Bildschirm " +"hochladen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Sie können Bilder über die Schaltfläche oben links auf dem Bildschirm " +"hochladen." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" +"Sie müssen entweder Daten oder eine URL angeben, um einen Anhang zu " +"erstellen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Ihre URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "YouTube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Heranzoomen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Herauszoomen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "hinzufügen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "und" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "Auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "verdunkeln" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "Standard" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "Ausschluss" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "aufhellen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplizieren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "überlagern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "Bildschirm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "Videos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "Websocket-Nachrichtbearbeitung" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.beispiel.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/el.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/el.po new file mode 100644 index 0000000..04cfc7c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/el.po @@ -0,0 +1,1768 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +# Stefanos Nikou , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-02 10:06+0000\n" +"PO-Revision-Date: 2018-10-02 10:06+0000\n" +"Last-Translator: Stefanos Nikou , 2018\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:35 +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:44 +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:45 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:195 +#, python-format +msgid "(URL or Embed)" +msgstr "(Διεύθυνση URL ή ενσωματωμένο)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1028 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "(YouTube, Vimeo, Vine, Instagram, DailyMotion ή Youku)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr " Πρώτος Πίνακας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:574 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Accepts" +msgstr "Αποδοχή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1078 +#, python-format +msgid "Action" +msgstr "Ενέργεια" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:112 +#, python-format +msgid "Add" +msgstr "Προσθήκη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:108 +#, python-format +msgid "Add an image URL" +msgstr "Προσθήκη URL εικόνας" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Add blocks" +msgstr "Προσθήκη πλαισίων" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1063 +#, python-format +msgid "Align center" +msgstr "Στοίχιση στο κέντρο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1062 +#, python-format +msgid "Align left" +msgstr "Στοίχιση αριστερά" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1064 +#, python-format +msgid "Align right" +msgstr "Στοίχιση δεξιά" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:101 +#, python-format +msgid "Alternate Upload" +msgstr "Εναλλακτική Μεταφόρτωση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:331 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:370 +#, python-format +msgid "Assign a focal point that will always be visible" +msgstr "Αντιστοιχίστε ένα σημείο αναφοράς που θα είναι πάντα ορατό" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Συνημμένο" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL συνημμένου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:197 +#, python-format +msgid "Attention" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Autoplay" +msgstr "Αυτόματη αναπαραγωγή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1069 +#: code:addons/web_editor/static/src/xml/snippets.xml:28 +#, python-format +msgid "Background Color" +msgstr "Χρώμα Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:951 +#, python-format +msgid "Background Image Sizing" +msgstr "Αλλαγή Μεγέθους Εικόνας Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:411 +#, python-format +msgid "Background height" +msgstr "Ύψος Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:423 +#, python-format +msgid "Background position" +msgstr "Θέση Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:449 +#, python-format +msgid "Background repeat" +msgstr "Επανάληψη Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:397 +#, python-format +msgid "Background size" +msgstr "Μέγεθος Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Background width" +msgstr "Πλάτος Φόντου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:255 +#, python-format +msgid "Block" +msgstr "Αποκλεισμός" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:989 +#, python-format +msgid "Bold" +msgstr "Έντονη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:833 +#, python-format +msgid "Careful !" +msgstr "Προσοχή !" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:136 +#, python-format +msgid "Center" +msgstr "Κέντρο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:81 +#, python-format +msgid "Change media description and tooltip" +msgstr "Αλλαγή περιγραφής και επεξήγησης πολυμέσου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:197 +#, python-format +msgid "Checked" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1076 +#: code:addons/web_editor/static/src/js/editor/translator.js:56 +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1630 +#: code:addons/web_editor/static/src/xml/ace.xml:36 +#, python-format +msgid "Close" +msgstr "Κλείσιμο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1040 +#, python-format +msgid "Code" +msgstr "Κωδικός" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1056 +#, python-format +msgid "Code View" +msgstr "Προβολή Κώδικα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:278 +#, python-format +msgid "Color" +msgstr "Χρώμα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:253 +#, python-format +msgid "Column" +msgstr "Στήλη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:82 +#, python-format +msgid "Common colors" +msgstr "Χρώματα στήλης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:365 +#, python-format +msgid "Contain" +msgstr "Περιέχει" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:7 +#, python-format +msgid "Content to translate" +msgstr "Περιεχόμενο προς μετάφραση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:196 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Αντιγράψτε-επικολλήστε εδώ τη διεύθυνση URL ή τον κώδικα ενσωμάτωσης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:364 +#, python-format +msgid "Cover" +msgstr "Εξώφυλλο" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:201 +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1628 +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Custom" +msgstr "Προσωποποιημένο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1068 +#, python-format +msgid "Custom Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:15 +#, python-format +msgid "Customize" +msgstr "Προσαρμογή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/summernote.js:2021 +#: code:addons/web_editor/static/src/xml/editor.xml:269 +#, python-format +msgid "Default" +msgstr "Προεπιλογή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:450 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "Ορίστε εάν/πως η εικόνα φόντου θα επαναλαμβάνεται" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:211 +#: code:addons/web_editor/static/src/xml/editor.xml:35 +#, python-format +msgid "Description" +msgstr "Περιγραφή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:955 +#: code:addons/web_editor/static/src/js/widgets/widgets.js:38 +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1637 +#: code:addons/web_editor/static/src/xml/editor.xml:12 +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Discard" +msgstr "Απόρριψη" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:57 +#, python-format +msgid "Document" +msgstr "Έγγραφο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1080 +#, python-format +msgid "Document Style" +msgstr "Στυλ Εγγράφου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:966 +#, python-format +msgid "Double-click to edit" +msgstr "Διπλό κλικ για επεξεργασία" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1009 +#, python-format +msgid "Drag an image here" +msgstr "Σύρετε μια εικόνα εδώ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:18 +#, python-format +msgid "Drag to Move" +msgstr "Σύρετε για να μετακινήσετε" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:19 +#, python-format +msgid "Duplicate Container" +msgstr "Αντίγραφο Περιέκτη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:192 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1018 +#, python-format +msgid "Edit" +msgstr "Επεξεργασία" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:97 +#, python-format +msgid "Expected " +msgstr "Αναμένεται" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1001 +#, python-format +msgid "File / Image" +msgstr "Αρχείο / Εικόνα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:273 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:348 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:349 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1006 +#, python-format +msgid "Float Left" +msgstr "Αναδίπλωση Αριστερά" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1008 +#, python-format +msgid "Float None" +msgstr "Χωρίς Αναδίπλωση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1007 +#, python-format +msgid "Float Right" +msgstr "Αναδίπλωση Δεξιά" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1070 +#, python-format +msgid "Font Color" +msgstr "Χρώμα Γραμματοσειράς" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:997 +#, python-format +msgid "Font Family" +msgstr "Οικογένεια Γραμματοσειράς" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:998 +#, python-format +msgid "Font Size" +msgstr "Μέγεθος Κειμένου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:43 +#, python-format +msgid "Format" +msgstr "Διαμόρφωση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1614 +#, python-format +msgid "Free" +msgstr "Δωρεάν" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1055 +#, python-format +msgid "Full Screen" +msgstr "Πλήρης οθόνη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:21 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1042 +#, python-format +msgid "Header 1" +msgstr "Επικεφαλίδα 1" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1043 +#, python-format +msgid "Header 2" +msgstr "Επικεφαλίδα 2" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1044 +#, python-format +msgid "Header 3" +msgstr "Επικεφαλίδα 3" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1045 +#, python-format +msgid "Header 4" +msgstr "Επικεφαλίδα 4" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1046 +#, python-format +msgid "Header 5" +msgstr "Επικεφαλίδα 5" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1047 +#, python-format +msgid "Header 6" +msgstr "Επικεφαλίδα 6" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1054 +#, python-format +msgid "Help" +msgstr "Βοήθεια" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:5 +#, python-format +msgid "Here are the visuals used to help you translate efficiently:" +msgstr "" +"Εδώ είναι τα οπτικά μέσα που χρησιμοποιούνται για να σας βοηθήσουν να " +"μεταφράσετε αποτελεσματικά:" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Απόκρυψη του λογοτύπου Dailymotion" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:218 +#, python-format +msgid "Hide Youtube logo" +msgstr "Απόκρυψη του λογοτύπου Youtube" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:215 +#, python-format +msgid "Hide fullscreen button" +msgstr "Απόκρυψη κουμπιού πλήρης οθόνης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:212 +#, python-format +msgid "Hide player controls" +msgstr "Απόκρυψη των χειριστηρίων αναπαραγωγής " + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Hide sharing button" +msgstr "Απόκρυψη κουμπιού κοινής χρήσης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:426 +#, python-format +msgid "Horizontal" +msgstr "Οριζόντια" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "Κωδικός" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/editor.js:126 +#, python-format +msgid "" +"If you discard the current edition, all unsaved changes will be lost. You " +"can cancel to return to the edition mode." +msgstr "" +"Αν απορρίψετε την τρέχουσα έκδοση, θα χαθούν όλες οι μη αποθηκευμένες " +"αλλαγές. Μπορείτε να το ακυρώσετε για να επιστρέψετε στην κατάσταση έκδοσης." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:832 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Αν επαναφέρετε αυτό το αρχείο, όλες οι προσαρμογές σας θα χαθούν, καθώς θα " +"γίνει επαναφορά στο αρχικό αρχείο." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:322 +#, python-format +msgid "" +"If you want to crop it, please first download it from the original source " +"and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:56 +#, python-format +msgid "Image" +msgstr "Εικόνα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1011 +#, python-format +msgid "Image URL" +msgstr "Διύθυνση URL εικόνας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "" +"In this mode, you can only translate texts. To change the structure of the page, you must edit the master page.\n" +" Each modification on the master page is automatically applied to all translated versions." +msgstr "" +"Σε αυτή τη λειτουργία, μπορείτε μόνο να μεταφράσετε κείμενα.\n" +"Για να αλλάξετε τη δομή της σελίδας, πρέπει να επεξεργαστείτε τη βασική σελίδα.\n" +"Κάθε τροποποίηση στη βασική σελίδα εφαρμόζεται αυτόματα σε όλες τις μεταφρασμένες εκδόσεις." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:31 +#, python-format +msgid "Include All SCSS Files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:22 +#, python-format +msgid "Include Asset Bundles" +msgstr "Περιλαμβάνει τα Σταθερά Πακέτα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1061 +#, python-format +msgid "Indent" +msgstr "Εσοχή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1034 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "Εισαγωγή Οριζόντιου Κανόνα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1002 +#, python-format +msgid "Insert Image" +msgstr "Εισαγωγή Εικόνας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1016 +#, python-format +msgid "Insert Link" +msgstr "Εισαγωγή Συνδέσμου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1026 +#, python-format +msgid "Insert Video" +msgstr "Εισαγωγή Video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Instagram" +msgstr "Instagram" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:1064 +#, python-format +msgid "Install" +msgstr "Εγκατάσταση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:990 +#, python-format +msgid "Italic" +msgstr "Πλάγια" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1065 +#, python-format +msgid "Justify full" +msgstr "Πλήρης στοίχιση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1075 +#, python-format +msgid "Keyboard shortcuts" +msgstr "Συντομεύσεις πληκρολογίου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:150 +#: code:addons/web_editor/static/src/xml/editor.xml:261 +#, python-format +msgid "Large" +msgstr "Μεγάλο" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:996 +#, python-format +msgid "Line Height" +msgstr "Ύψος Γραμμής" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1015 +#, python-format +msgid "Link" +msgstr "Σύνδεσμος" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:244 +#, python-format +msgid "Link Label" +msgstr "Ετικέτα συνδέσμου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1346 +#, python-format +msgid "Link to" +msgstr "Σύνδεση με" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Loop" +msgstr "Βρόχος" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:149 +#: code:addons/web_editor/static/src/xml/editor.xml:260 +#, python-format +msgid "Medium" +msgstr "Μέσο" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Περιγραφή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:69 +#, python-format +msgid "Next" +msgstr "Επόμενο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:452 +#, python-format +msgid "No repeat" +msgstr "Χωρίς Επανάληψη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:147 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1072 +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "None" +msgstr "Κανένα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1038 +#, python-format +msgid "Normal" +msgstr "Κανονική" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:954 +#: code:addons/web_editor/static/src/js/editor/translator.js:98 +#, python-format +msgid "Ok" +msgstr "ΟΚ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/translator.js:97 +#, python-format +msgid "Ok, never show me this again" +msgstr "ΟΚ, να μην εμφανιστεί ξανά." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1021 +#: code:addons/web_editor/static/src/xml/editor.xml:299 +#, python-format +msgid "Open in new window" +msgstr "Άνοιγμα σε νέο παράθυρο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:203 +#, python-format +msgid "Options" +msgstr "Επιλογές" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1051 +#, python-format +msgid "Ordered list" +msgstr "Ταξινομημένη λίστα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1060 +#, python-format +msgid "Outdent" +msgstr "Προεξοχή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:270 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:272 +#, python-format +msgid "Outline-Rounded" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:154 +#, python-format +msgid "Padding" +msgstr "Γέμισμα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1059 +#, python-format +msgid "Paragraph" +msgstr "Παράγραφος" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1079 +#, python-format +msgid "Paragraph formatting" +msgstr "Μορφοποίηση Παραγράφου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:58 +#, python-format +msgid "Pictogram" +msgstr "Εικονόγραμμα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:230 +#: code:addons/web_editor/static/src/xml/editor.xml:307 +#: code:addons/web_editor/static/src/xml/editor.xml:309 +#, python-format +msgid "Preview" +msgstr "Προεπισκόπηση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:68 +#, python-format +msgid "Previous" +msgstr "Προηγούμενο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1039 +#, python-format +msgid "Quote" +msgstr "Σημείωμα" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monerary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.js:326 +#, python-format +msgid "Readonly field" +msgstr "Πεδίο μόνο για ανάγνωση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1084 +#, python-format +msgid "Redo" +msgstr "Ακύρωση αναίρεσης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:196 +#, python-format +msgid "Remove" +msgstr "Αφαίρεση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:20 +#, python-format +msgid "Remove Block" +msgstr "Διαγραφή Πλαισίου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:995 +#, python-format +msgid "Remove Font Style" +msgstr "Αφαίρεση Στυλ Γραμματοσειράς" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1012 +#, python-format +msgid "Remove Image" +msgstr "Αφαίρεση Εικόνας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "Repeat" +msgstr "Επαναλαμβανόμενη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:453 +#, python-format +msgid "Repeat both" +msgstr "Επανάληψη Χ και Υ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:454 +#, python-format +msgid "Repeat x" +msgstr "Επανάληψη Χ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:455 +#, python-format +msgid "Repeat y" +msgstr "Επανάληψη Υ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:42 +#, python-format +msgid "Reset" +msgstr "Επαναφορά" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:352 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:490 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Η επαναφορά των προβολών δεν υποστηρίζεται ακόμα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1003 +#, python-format +msgid "Resize Full" +msgstr "Αλλαγή μεγέθους σε Πλήρης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1004 +#, python-format +msgid "Resize Half" +msgstr "Αλλαγή μεγέθους στο Μισό" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1005 +#, python-format +msgid "Resize Quarter" +msgstr "Αλλαγή μεγέθους στο Τέταρτο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:344 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:271 +#, python-format +msgid "Rounded" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:11 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:364 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:37 +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1633 +#: code:addons/web_editor/static/src/xml/ace.xml:35 +#: code:addons/web_editor/static/src/xml/editor.xml:13 +#, python-format +msgid "Save" +msgstr "Αποθήκευση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:63 +#: code:addons/web_editor/static/src/xml/snippets.xml:44 +#, python-format +msgid "Search" +msgstr "Αναζήτηση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:42 +#, python-format +msgid "Search Contact" +msgstr "Αναζήτηση Επαφής" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:13 +#, python-format +msgid "Select Parent Container" +msgstr "Επιλογή Γονικού Περιέκτη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1123 +#, python-format +msgid "Select a Media" +msgstr "Επιλέξτε ένα μέσο ενημέρωσης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:130 +#, python-format +msgid "Select a Picture" +msgstr "Επιλογή Εικόνας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1010 +#, python-format +msgid "Select from files" +msgstr "Επιλογή από αρχεία" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:572 +#, python-format +msgid "Server error" +msgstr "Σφάλμα διακομιστή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#, python-format +msgid "Set the starting position of the background image." +msgstr "Ορίστε την αρχική θέση της εικόνας φόντου." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:398 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" +"Ορίζει το πλάτος και το ύψος της εικόνας φόντου σε ποσοστό σε σχέση με το " +"γονικό στοιχείο." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:161 +#, python-format +msgid "Shadow" +msgstr "Σκιά" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:256 +#, python-format +msgid "Size" +msgstr "Μέγεθος" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:148 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1041 +#: code:addons/web_editor/static/src/xml/editor.xml:259 +#, python-format +msgid "Small" +msgstr "Μικρό" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:169 +#, python-format +msgid "Spin" +msgstr "Περιστροφή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:992 +#, python-format +msgid "Strikethrough" +msgstr "Διακριτή διαγραφή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1037 +#: code:addons/web_editor/static/src/xml/editor.xml:266 +#, python-format +msgid "Style" +msgstr "Στύλ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:993 +#, python-format +msgid "Subscript" +msgstr "Δείκτης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:994 +#, python-format +msgid "Superscript" +msgstr "Εκθέτης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1031 +#, python-format +msgid "Table" +msgstr "Πίνακας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:362 +#, python-format +msgid "Template ID: %s" +msgstr "Κωδικός Προτύπου: %s" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1077 +#, python-format +msgid "Text formatting" +msgstr "Μορφοποίηση κειμένου" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1019 +#, python-format +msgid "Text to display" +msgstr "Κείμενο για εμφάνιση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:157 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" +"Η εικόνα δεν μπορεί να διαγραφεί διότι χρησιμοποιείται στις\n" +"                παρακάτω σελίδες ή προβολές:" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1056 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" +"Η παρεχόμενη διεύθυνση URL δεν αναφέρεται σε κανένα υποστηριζόμενο video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1050 +#, python-format +msgid "The provided url is not valid" +msgstr "Η παρεχόμενη διεύθυνση URL δεν είναι έγκυρη" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:74 +#, python-format +msgid "Theme colors" +msgstr "Χρώματα θέματος" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/editor.js:86 +#: code:addons/web_editor/static/src/js/editor/translator.js:181 +#, python-format +msgid "This document is not saved!" +msgstr "Το έγγραφο δεν έχει αποθηκευτεί!" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:148 +#, python-format +msgid "This file is a public view attachment" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "This file is attached to the current record" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:320 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:321 +#, python-format +msgid "This type of image is not supported for cropping." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1020 +#, python-format +msgid "To what URL should this link go?" +msgstr "Σε ποια διεύθυνση URL θα πρέπει αν οδηγεί αυτός ο σύνδεσμος;" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:44 +#, python-format +msgid "Tooltip" +msgstr "Επεξήγηση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:12 +#, python-format +msgid "Translate" +msgstr "Μετάφραση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/translator.js:54 +#, python-format +msgid "Translate Attribute" +msgstr "Χαρακτηριστικό Μετάφρασης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:8 +#, python-format +msgid "Translated content" +msgstr "Μεταφρασμένο Περιεχόμενο" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "Translation" +msgstr "Μετάφραση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/translator.js:95 +#, python-format +msgid "Translation Info" +msgstr "Πληροφορίες Μετάφρασης" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1071 +#, python-format +msgid "Transparent" +msgstr "Διαφάνεια" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#, python-format +msgid "URL or Email" +msgstr "Διεύθυνση URL ή email" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:991 +#, python-format +msgid "Underline" +msgstr "Υπογράμμιση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1083 +#, python-format +msgid "Undo" +msgstr "Αναίρεση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:90 +#, python-format +msgid "Unexpected " +msgstr "Απροσδόκητο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1017 +#, python-format +msgid "Unlink" +msgstr "Αποσύνδεση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1050 +#, python-format +msgid "Unordered list" +msgstr "Μη αριθμημένη λίστα" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:99 +#, python-format +msgid "Upload an image" +msgstr "Μεταφόρτωση μιας εικόνας" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:104 +#, python-format +msgid "Upload image without optimization" +msgstr "Ανεβάστε την εικόνα χωρίς βελτιστοποίηση" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:437 +#, python-format +msgid "Vertical" +msgstr "Κατακόρυφο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1024 +#: code:addons/web_editor/static/src/xml/editor.xml:59 +#, python-format +msgid "Video" +msgstr "Βίντεο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1025 +#, python-format +msgid "Video Link" +msgstr "Σύνδεσμος Video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:1027 +#, python-format +msgid "Video URL?" +msgstr "Διεύθυνση URL Video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:195 +#, python-format +msgid "Video code" +msgstr "Κώδικας Video" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Προβολή" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Vine.co" +msgstr "Vine.co" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:8 +#: code:addons/web_editor/static/src/xml/ace.xml:10 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:151 +#, python-format +msgid "Xl" +msgstr "Xl" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:4 +#, python-format +msgid "You are about to enter the translation mode." +msgstr "Πρόκειται να μπείτε στη λειτουργία μετάφρασης." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:340 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "and" +msgstr "και" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:403 +#: code:addons/web_editor/static/src/xml/editor.xml:414 +#: code:addons/web_editor/static/src/xml/editor.xml:429 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "auto" +msgstr "Αυτόματο" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "https://www.odoo.com/logo.png" +msgstr "https://www.odoo.com/logo.png" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:200 +#, python-format +msgid "videos" +msgstr "videos" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:107 +#, python-format +msgid "— or —" +msgstr "— ή —" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_AU.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_AU.po new file mode 100644 index 0000000..020b488 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_AU.po @@ -0,0 +1,1511 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-30 09:29+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/" +"language/en_AU/)\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Add" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Close" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Created on" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Discard" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Edit" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Image" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Preview" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Remove" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Save" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Search" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Uploading ..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Warning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "all" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "or" +#~ msgstr "or" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_GB.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_GB.po new file mode 100644 index 0000000..67cf983 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/en_GB.po @@ -0,0 +1,1531 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# James Dove , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-11-22 02:05+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/" +"odoo-9/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Action" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Add" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, fuzzy, python-format +msgid "Background Image Options" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, fuzzy, python-format +msgid "Background height" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, fuzzy, python-format +msgid "Background position" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, fuzzy, python-format +msgid "Background repeat" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, fuzzy, python-format +msgid "Background size" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, fuzzy, python-format +msgid "Background width" +msgstr "Background Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Close" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Code" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "Colour Style" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Created on" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, fuzzy, python-format +msgid "Custom" +msgstr "Customise" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "Customise" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Default" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Discard" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Document" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Edit" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, fuzzy, python-format +msgid "Font Color" +msgstr "Recent Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Help" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Image" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Information" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "More Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "None" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Preview" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "Recent Colour" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Remove" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Reset" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Save" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Search" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Size" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Uploading..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Warning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +#, fuzzy +msgid "ir.qweb.field.barcode" +msgstr "ir.qweb.field.float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "ir.qweb.field.float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "unknown" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "Danger Color" +#~ msgstr "Danger Colour" + +#~ msgid "Foreground Color" +#~ msgstr "Foreground Colour" + +#~ msgid "Info Color" +#~ msgstr "Info Colour" + +#~ msgid "Primary Color" +#~ msgstr "Primary Colour" + +#~ msgid "Success Color" +#~ msgstr "Success Colour" + +#~ msgid "Warning Color" +#~ msgstr "Warning Colour" + +#~ msgid "or" +#~ msgstr "or" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es.po new file mode 100644 index 0000000..dea04c3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es.po @@ -0,0 +1,3465 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# sesn-odoo, 2022 +# Cécile Collart , 2022 +# Leonardo J. Caballero G. , 2022 +# Martin Trigaux, 2023 +# Ana Sanjuán, 2023 +# Pedro M. Baeza , 2023 +# Wil Odoo, 2025 +# Larissa Manderfeld, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Larissa Manderfeld, 2025\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Sugerido)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"La 'etiqueta Alt' especifica un texto alternativo para una imagen, si la " +"imagen no se puede mostrar (conexión lenta, imagen faltante, lector de " +"pantalla ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"La 'etiqueta de título' se muestra como información sobre herramientas " +"cuando coloca el cursor sobre la imagen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(Etiqueta ALT)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(Etiqueta TÍTULO)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL o incrustación)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100 %" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 columnas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25 %" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 estrellas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 columnas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 columnas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 estrellas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50 %" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "grados" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Bloques" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Personalizar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Ocurrió un error del servidor. Compruebe que inició sesión correctamente y " +"que el archivo que está guardando está formateado correctamente." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Encima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Acepta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Añadir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Añadir columna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Añadir fila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Añadir URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Añadir una sección de bloque de cita." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Añadir un Botón" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Añadir una sección de código." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Añadir una columna a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Añadir una columna a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Añadir un vínculo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Añadir una fila encima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Añadir una fila debajo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Fino & en zigzag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alerta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Alinear al centro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Alinear a la izquierda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Alinear a la derecha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alineación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Todos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Todos los archivos SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Todos los documentos han sido cargados" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Todas las imágenes han sido cargadas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Etiqueta Alt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Ángulo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anónimo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "¿Está seguro de que desea eliminar este snippet: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "¿Estás seguro de que deseas eliminar este archivo?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Relación de aspecto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Utilidades de activos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Archivo adjunto" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL del archivo adjunto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Convertir automáticamente a enlace relativo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Reproducción automática" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Volver a una columna." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fondo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Color de fondo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Posición del fondo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Bloques básicos" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Básico" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Debajo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Encabezado de sección grande" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Manchas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloque" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Bloques y lluvioso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Desenfocar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Negrita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Borde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Color del borde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Estilo de borde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Ancho del borde" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Brillo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Lista de viñetas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Botón" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "¡Tenga cuidado!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Cambiar la descripción y el cuadro de información del medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Lista de comprobación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Elija un registro..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtro de color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Colores" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Columna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Colores comunes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflicto de contenido" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contraste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Convertir en 2 columnas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Convertir en 3 columnas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Convertir en 4 columnas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copiar enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copie y pegue su URL o incruste su código aquí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "No se pudo instalar el módulo %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "No fue posible subir el archivo %s. " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Portada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Crear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Crear una lista con numeración." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Crear una lista simple de viñetas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Crear una URL" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Recortar imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Personalizado %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Rayado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Por defecto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Por defecto + Redondeado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Defina un gradiente personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Eliminar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Eliminar tabla actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descripción" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispositivos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Descartar registro" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "¿Desea instalar la aplicación de %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documentos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Punteado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Doble" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Haga doble clic para editar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Arrastre y suelte el bloque de creación." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar contenedor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Colores dinámicos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Marcador de posición dinámico" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"ERROR: No se pudieron obtener URLs de descarga de la biblioteca de medios." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Editar enlace" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Editar imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Editar descripción del archivo multimedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"No se recomienda editar un archivo integrado a través de este editor, ya que" +" evitará que se actualice durante futuras actualizaciones de aplicación." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Incrustar Imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Incrustar vídeo de Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Incruste la imagen en el documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Incruste el vídeo de YouTube en el documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Cita vacía" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Previsto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Extender a la esquina más cercana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Extender al lado más cercano" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Extender a la esquina más lejana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Extender al lado más lejano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Se subió el archivo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Rellenar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Rellenar + Redondeado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Color de relleno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Primer panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Plano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexible" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Girar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Girar horizontalmente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Girar verticalmente" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Formas flotantes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Flotante" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Color de la fuente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Tamaño de fuente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Por razones técnicas, no puede soltar este bloque aquí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formatear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Pantalla completa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Consiga la imagen perfecta al buscar en nuestra biblioteca de fotos e " +"ilustraciones libres de derechos de autor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradiente" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutamiento HTTP " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Encabezado 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Encabezado 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Encabezado 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Encabezado 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Encabezado 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Encabezado 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Titular 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Titular 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Titular 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Titular 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Titular 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Titular 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Altura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Ocultar logotipo de Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Ocultar botón de pantalla completa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Ocultar controles de reproductor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Ocultar botón compartir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icono" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formato de icono" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Tamaño de icono 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Tamaño de icono 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Tamaño de icono 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Tamaño de icono 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Tamaño de icono 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Iconos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Si descarta las ediciones actuales, todos los cambios no guardados se " +"perderán. Puede cancelar para volver al modo de edición." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Si restablece este archivo, todas sus personalizaciones se perderán y la " +"configuración volverá a ser la predeterminada." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustraciones" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formato de imagen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Altura de imagen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Fuente de la imagen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Ancho de la imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Relleno de imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Imagenes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Texto Inline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Insertar una calificación mayor a 3 estrellas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Insertar una calificación mayor a 5 estrellas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Insertar una tabla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Inserta un vídeo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Insertar arriba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Insertar un separador de línea horizontal." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Insertar una imagen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Insertar abajo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Insertar a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Insertar archivo multimedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Insertar o editar enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Insertar contenido personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Insertar a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Insertar tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Insertar su firma." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instalar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Instalación en curso" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valor de campo no válido para %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Elementos invisibles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Elemento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Archivo JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Grande" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Izquierda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Líneas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Etiqueta del enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Enlace copiado al portapapeles." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Enlazar con" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Carga más..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Bucle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Color principal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Herramientas de marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Medios" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Encabezado de sección mediana." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Más información sobre esta aplicación." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Mover hacia abajo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Mover hacia la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Mover a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Mover hacia arriba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Mis imágenes" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nombre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navegación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "No" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL no especificada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "No se encontraron documentos." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "No se encontraron imágenes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "No hay ubicación donde soltar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "No hay más registros" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "No se encontraron pictogramas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Lista numerada" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Pruebas de editor de Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Solo archivos SCSS personalizados" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Solo archivos SCSS de página" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Solo vistas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Abrir en una pestaña nueva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Abrir en una ventana nueva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimizado" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Archivo adjunto original (no optimizado, sin tamaño ajustado)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Orígenes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contorno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Contorno + Redondeado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Relleno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opciones de página" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bloque de párrafo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Pegar como URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Patrones" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Posición" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Vista previa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primario" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Calidad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Cita" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Campo Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Campo Qweb Contacto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Campo Qweb Fecha" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Campo Qweb Fecha-Hora" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Campo Qweb Duración" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Campo Qweb Flotante" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Campo Qweb HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Campo Qweb Imagen" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Campo Qweb entero" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Campo Qweb Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Campo Qweb Monetario" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Campo Qweb Relativo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Campo Qweb Selección" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Campo Qweb Texto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Campo Qweb de Qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Campo de sólo lectura" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" +"Redireccione al usuario a otro lado al hacer clic en el archivo multimedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Borrar (ELIMINAR)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Eliminar bloque" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Eliminar actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Eliminar enlace" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Eliminar color seleccionado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Eliminar columnas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Remover columna actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Remover fila actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Eliminar formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Eliminar enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Renombrar %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Repetir patrón" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Reemplazar " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Reemplazar medios" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Restablecer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Restablecer imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Reestablecer tamaño" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Restablecer recorte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Restablecer transformación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Aún no se admite el reinicio de vistas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Redimensionar a tamaño por defecto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Redimensionar a tamaño completo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Redimensionar a tamaño medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Redimensionar a un cuarto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotar a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotar a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Fila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Archivo SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Guardar e instalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Guardar y actualizar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Guardar registro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Buscar un documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Buscar un pictograma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Buscar una imagen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Buscar un bloque (por ejemplo, números, muro de imágenes, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Buscar registros..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Buscar más..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Buscar más registros" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secundario" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Seleccione un bloque en su página para darle estilo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Seleccionar un medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separador" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Error de servidor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Sombra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forma: Círculo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forma: Redonda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Mostrar imágenes optimizadas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Firma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Tamaño 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Tamaño 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Tamaño 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Tamaño 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Tamaño 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Pequeño" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Encabezado de sección pequeña." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Sólido" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Sólidos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Alguien con mayores permisos modificó esta área antes, por lo que no puede " +"modificarlo." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Especiales" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Estructura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Sugerencias" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Cambiar dirección" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Cambiar la dirección del texto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opciones de tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Herramientas de tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID plantilla: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Color del texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Alineación del texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Estilo de texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "La URL no parece funcionar." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "La URL parece válida." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "La fecha y hora %s no coincide con el formato %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"El documento ya se guardó de alguien con un historial diferente para el " +"modelo %r, campo %r con ID %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "La URL proporcionada no hace referencia a ningún vídeo admitido" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "La URL proporcionada no es válida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "La URL proporcionada no es válida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Se usará la versión de la base de datos.\n" +" Si necesita guardar sus cambios, copie el contenido a continuación y edite el nuevo documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Colores del tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Hay un conflicto entre su versión y la versión en la base de datos." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Esta URL es inválido. No se puede actualizar la vista previa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Este bloque está obsoleto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "¡Este documento no esta guardado!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Este archivo es un archivo adjunto de vista pública." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Este archivo está adjunto al registro actual." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Esta imagen es una imagen externa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"No se puede recortar este tipo de imagen.
Si desea recortarla, primero " +"descárguela de su origen y súbala a Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Título" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Etiqueta de título " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Suelte este bloque para hacer cambios y utilice las nuevas opciones en la " +"última versión." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Para guardar un snippet primero debemos guardar todas sus modificaciones " +"anteriores y actualizar la página." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Actividades pendientes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Tostadora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Alternar negritas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Alternar lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Alternar giro de icono" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Alternar cursiva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Alternar lista ordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Alternar tachado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Alternar subrayado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Alternar lista desordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Información sobre herramientas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Haga un seguimiento de tareas con una lista de comprobación." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformar la fotografía" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transforme la imagen (haga clic dos veces para restablecer la " +"transformación)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traducir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Colores transparentes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Intente buscar otras palabras clave." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Escriba \"/\" para comandos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL o correo electrónico" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Desalinear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Inesperado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Subir un documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Subir una imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "El formato de la imagen subida no es compatible. Intente con:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "El formato de la imagen subida no es compatible. Intente con: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formato de vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Código de vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Vídeos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"Los vídeos se silencian cuando la reproducción automática está habilitada" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Paquetes de vistas y activos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Advertencia: después de cerrar este cuadro de diálogo se descartará la " +"versión en la que estaba trabajando y nunca volverá a estar disponible." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Ondulado" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Subprueba de convertidor del editor web" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Prueba de convertidor del editor web" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Ancho" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Escriba algo..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Sí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Puede cargar documentos con el botón situado en la esquina superior " +"izquierda de la pantalla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Puede cargar imágenes con el botón situado en la esquina superior izquierda " +"de la pantalla." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Debe especificar datos o URL para crear un archivo adjunto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Su URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Acercar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Alejar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "añadir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automático" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "oscurecer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "predeterminado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusión" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "aclarar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplicar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "superponer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "pantalla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "vídeos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "gestión de mensajes de WebSocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CL.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CL.po new file mode 100644 index 0000000..ac534a1 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CL.po @@ -0,0 +1,1511 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-03-12 06:25+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Agregar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Por defecto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Ayuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Búsqueda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.traduccion" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "or" +#~ msgstr "o" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CO.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CO.po new file mode 100644 index 0000000..e410cc9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CO.po @@ -0,0 +1,1565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# ANDRES FELIPE NEGRETE GOMEZ , 2016 +# Mateo Tibaquirá , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-02-12 16:48+0000\n" +"Last-Translator: ANDRES FELIPE NEGRETE GOMEZ \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "(Youtube, Vimeo, Dailymotion)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Añadir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "Añadir una imagen URL" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "Alienar al centro" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "Alinear a la izquierda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "Alinear a la derecha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "Subida Alternativa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "URL Adjunto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "Redim Auto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "Reproducción Automática" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, fuzzy, python-format +msgid "Background Image Options" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, fuzzy, python-format +msgid "Background height" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, fuzzy, python-format +msgid "Background position" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, fuzzy, python-format +msgid "Background repeat" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, fuzzy, python-format +msgid "Background size" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, fuzzy, python-format +msgid "Background width" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "Básico" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "Estilo de bloque" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "Negrillas" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "Centro" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, fuzzy, python-format +msgid "Change media description and tooltip" +msgstr "Cambia media Alt y Título" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "Ver Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "Estilo de Color" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, fuzzy, python-format +msgid "Custom" +msgstr "Personalizar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "Personalizar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "Peligro" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Predeterminado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, fuzzy, python-format +msgid "Description" +msgstr "Descartar edición" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "Descartar edición" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "Estilo de Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "Arrastre una imagen aquí" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "Mantenga y Mueva" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar Contenedor" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "Embeber Video (HTML)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "Inglés" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "Inglés (modo de edición)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "Extra pequeño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "Flotar a la Izquierda " + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "Hacia la Derecha" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, fuzzy, python-format +msgid "Font Color" +msgstr "Color Reciente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "Familia de Fuentes" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "Tamaño de Fuente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "Pantalla Completa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, fuzzy +msgid "Gray Light" +msgstr "Luminoso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "Enrutamiento HTTP" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "Encabezado 1" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "Encabezado 2" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "Encabezado 3" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "Encabezado 4" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "Encabezado 5" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "Encabezado 6" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Ayuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, fuzzy, python-format +msgid "Horizontal" +msgstr "Insertar Regla Horizontal" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "Si descarta la edición actual," + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "URL de la Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "Sangría" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "Insertar Regla Horizontal" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "Insertar Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "Insertar Vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "Insertar Vídeo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "Cursivas" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "Justificado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "Atajos de teclado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "Grande" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "Alto de la Línea" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Enlace" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "Etiqueta del Vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "Víncular a" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "Más Color" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "Siguiente →" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "Diseño del Editor de Odoo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "Abrir en nueva ventana" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "Lista ordenada" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "Anular sangría" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "Relleno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "Párrafo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "Formato del Párrafo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "Pictograma" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Previsualizar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "Primario" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "Cita" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "Campo solo lectura" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "Color Reciente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "Rehacer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "Remover Bloque" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "Remover estilo de fuente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "Remover Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Resetear" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "Resetear desde el origen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "Resetear al predeterminado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "Redimensionar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "Redim Completo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "Redim Mitad" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "Redim Cuarto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Buscar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "Buscar Contacto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "Seleccionar un Bloque Contenedor" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "Seleccionar Multimedia" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "Seleccionar Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "Seleccionar desde archivos" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "Configurar una URL de video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "Configurar transparencia" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "Sombra" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "Pequeño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "Girar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "Atravesado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "Suscribir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "Éxito" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "Superíndice" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "Tabla" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "Formateando texto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "Texto a mostrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" +"La imagen no pudo ser borrada porque es usada en las\n" +"siguientes páginas o vistas:" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "¡El documento no se ha guardado!" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "¿Hacía qué URL debe ser vinculado esto?" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "Atributo Traducido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "Transparente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "URL o Correo Electrónico" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "Subrayado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "Deshacer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "Desvincular" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "Lista no ordenada" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, fuzzy, python-format +msgid "Upload an image" +msgstr "Añadir una imagen URL" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "Subir imagen sin optimización" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Subiendo..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "Vínculo del Vídeo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "¿URL del vídeo?" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "Escriba Su Texto Aquí" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "Escriba Su Texto o Mueva un Bloque Aquí" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "Xl" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "Usted puede cancelar para regresar al modo de edición." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "todo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "http://odoo.com" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "https://www.odoo.com/logo.png" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "ir.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "ir.qweb.field" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +#, fuzzy +msgid "ir.qweb.field.barcode" +msgstr "ir.qweb.field.date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "ir.qweb.field.contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "ir.qweb.field.date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "ir.qweb.field.datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "ir.qweb.field.duration" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "ir.qweb.field.float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "ir.qweb.field.html" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "ir.qweb.field.image" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "ir.qweb.field.integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "ir.qweb.field.many2one" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "ir.qweb.field.monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "ir.qweb.field.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "ir.qweb.field.relative" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "ir.qweb.field.selection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "ir.qweb.field.text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido(a)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "los cambios no guardados se perderán." + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "web_editor.converter.test" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "web_editor.converter.test.sub" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "— o —" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "← Anterior" + +#~ msgid "<!DOCTYPE html>" +#~ msgstr "<!DOCTYPE html>" + +#~ msgid "" +#~ "\n" +#~ " \n" +#~ " First Panel" +#~ msgstr "" +#~ "\n" +#~ " \n" +#~ " Primer Panel" + +#~ msgid "Alt:" +#~ msgstr "Alt:" + +#~ msgid "Change..." +#~ msgstr "Cambiar..." + +#~ msgid "Danger Color" +#~ msgstr "Color de Peligro" + +#~ msgid "Foreground Color" +#~ msgstr "Color de Primer Plano" + +#~ msgid "Info Color" +#~ msgstr "Información del Color" + +#~ msgid "Insert Blocks" +#~ msgstr "Insertar Bloques" + +#~ msgid "Primary Color" +#~ msgstr "Color Primario" + +#~ msgid "Snippets are loading..." +#~ msgstr "Cargando los snippets..." + +#~ msgid "Success Color" +#~ msgstr "Color de Logro" + +#~ msgid "Title:" +#~ msgstr "Título:" + +#~ msgid "Upload an image from your computer" +#~ msgstr "Subir una imágen desde su computador" + +#~ msgid "Warning Color" +#~ msgstr "Color de Advertencia" + +#~ msgid "or" +#~ msgstr "o" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CR.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CR.po new file mode 100644 index 0000000..da1d59b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_CR.po @@ -0,0 +1,1508 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-30 09:29+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Añadir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Por defecto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Ayuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ningúno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Vista previa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Reiniciar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Búsqueda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "Tabla" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Subiendo ..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.traduccion" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_DO.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_DO.po new file mode 100644 index 0000000..069bf20 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_DO.po @@ -0,0 +1,1515 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-05-19 06:01+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/" +"odoo-9/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Añadir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "URL Adjunto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, fuzzy, python-format +msgid "Background Image Options" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, fuzzy, python-format +msgid "Background height" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, fuzzy, python-format +msgid "Background position" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, fuzzy, python-format +msgid "Background repeat" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, fuzzy, python-format +msgid "Background size" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, fuzzy, python-format +msgid "Background width" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "Básico" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Por defecto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, fuzzy, python-format +msgid "Font Color" +msgstr "Color de fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "Enrutado HTTP" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Ayuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "Grande" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Enlace" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Vista previa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "Cita" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Restablecer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Búsqueda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "Pequeño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "Mesa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "Deshacer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Subiendo..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "todos" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "ir.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "ir.qweb.field" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +#, fuzzy +msgid "ir.qweb.field.barcode" +msgstr "ir.qweb.field.date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "ir.qweb.field.contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "ir.qweb.field.date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "ir.qweb.field.datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "ir.qweb.field.duration" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "ir.qweb.field.float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "ir.qweb.field.html" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "ir.qweb.field.image" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "ir.qweb.field.integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "ir.qweb.field.many2one" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "ir.qweb.field.monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "ir.qweb.field.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "ir.qweb.field.relative" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "ir.qweb.field.selection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "ir.qweb.field.text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "<!DOCTYPE html>" +#~ msgstr "<!DOCTYPE html>" + +#~ msgid "or" +#~ msgstr "o" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_EC.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_EC.po new file mode 100644 index 0000000..e414188 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_EC.po @@ -0,0 +1,1564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Rick Hunter , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-02-01 04:17+0000\n" +"Last-Translator: Rick Hunter \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/" +"language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "(Youtube, Vimeo, Dailymotion)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Añadir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "Añadir una imagen URL" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "Alienar al centro" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "Alinear a la izquierda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "Alinear a la derecha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "Alternativa de Carga" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "URL del Adjunto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "Tamaño automático" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "Reproducción Automática" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, fuzzy, python-format +msgid "Background Image Options" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, fuzzy, python-format +msgid "Background height" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, fuzzy, python-format +msgid "Background position" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, fuzzy, python-format +msgid "Background repeat" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, fuzzy, python-format +msgid "Background size" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, fuzzy, python-format +msgid "Background width" +msgstr "Color de Fondo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "Básico" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "Estilo de Bloque" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "Negrillas" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "Centro" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, fuzzy, python-format +msgid "Change media description and tooltip" +msgstr "Cambia media Alt y Título" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "Ver Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "Estilo de color" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por:" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, fuzzy, python-format +msgid "Custom" +msgstr "Personalizar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "Personalizar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "Peligro" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Predeterminado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, fuzzy, python-format +msgid "Description" +msgstr "Descartar edición" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "Descartar edición" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "Estilo de documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "Coloque una imagen aquí" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "Mantenga y mueva" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar contenedor" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "Vídeo Embebido (HTML)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "Inglés" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "Inglés (modo de edición)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "Extra pequeño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "Flotar a la Izquierda " + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "Hacia la derecha" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, fuzzy, python-format +msgid "Font Color" +msgstr "Color reciente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "Familia de fuentes" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "Tamaño de Fuente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "Toda la pantalla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, fuzzy +msgid "Gray Light" +msgstr "Luminoso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "Ruta HTTP" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "Encabezado 1" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "Encabezado 2" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "Encabezado 3" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "Encabezado 4" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "Encabezado 5" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "Encabezado 6" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Ayuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, fuzzy, python-format +msgid "Horizontal" +msgstr "Insertar regla horizontal" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "Si usted descarta la actual edición, " + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "Url de la imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "Sangría" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "Insertar regla horizontal" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "Insertar Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "Insertar vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "Insertar vídeo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "Cursivas" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "Justificado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "Atajos del teclado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "Largo" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Fecha de modificación" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Ultima Actualización por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Actualizado en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "Alto de la línea" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "Etiqueta del vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "Víncular a" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "Más colores" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "Siguiente →" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "Diseño del Editor de Odoo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "Abrir en nueva ventana" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "Lista ordenada" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "Anular sangría" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "Relleno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "Párrafo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "Formato del Párrafo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "Pictograma" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Vista Previa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "Primario" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "Cita" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "Campo solo lectura" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "Color reciente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "Rehacer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "Remover bloque" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "Remover estilo de fuente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "Remover imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Resetear" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "Resetear desde el origen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "Resetear al predeterminado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "Cambiar el tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "Cambiar a tamaño completo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "Cambiar a la mitad del tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "Cambiar al cuarto del tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Grabar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Buscar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "Buscar Contacto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "Seleccionar un bloque contenedor" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "Seleccionar Multimedia" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "Seleccionar Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "Seleccionar desde archivos" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "Configurar una URL de video" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "Configurar transparencia" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "Sombra" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "Pequeño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "Girar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "Atravesado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "Suscribir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "Exitoso " + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "Superíndice" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "Tabla" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "Formateando texto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "Texto a mostrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" +"La imagen no puede ser eliminada porque se está usando en las\n" +"siguientes páginas o vistas:" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "¡El documento no se ha grabado!" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "¿Hacía qué URL debe ser vinculado esto?" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "Atributo traducido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "Transparente" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "URL o Dirección Email" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "Subrayado" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "Deshacer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "Desvincular" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "Lista no ordenada" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, fuzzy, python-format +msgid "Upload an image" +msgstr "Añadir una imagen URL" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "Subir una imagen sin optimización" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Subiendo..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "Vídeo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "Vínculo del Vídeo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "¿URL del vídeo?" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "Escriba su texto aquí" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "Escriba su texto o mueva un bloque aquí" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "Xl" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "Usted puede cancelar para regresar al modo de edición." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "Todo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "http://openerp.com" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "http://openerp.com/logo.png" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "ir.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "Campo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +#, fuzzy +msgid "ir.qweb.field.barcode" +msgstr "Campo de Fecha" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "Campo de Contacto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "Campo de Fecha" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "Campo de Fecha" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "Campo de Duración" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "Campo numérico de ir.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "Campo HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "Campo de Imagen" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "Campo de Entero" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "Campo Many2one" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "Campo de Dinero" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "Campo Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "Campo relativo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "Campo de Selección" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "Campo de texto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.traduccion" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "Cambios no guardados se perderán" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "Test de Conversión" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "Test de Conversión Sub" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "— o —" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "← Anterior" + +#~ msgid "<!DOCTYPE html>" +#~ msgstr "<!DOCTYPE html>" + +#~ msgid "" +#~ "\n" +#~ " \n" +#~ " First Panel" +#~ msgstr "" +#~ "\n" +#~ " \n" +#~ " Primer Panel" + +#~ msgid "Alt:" +#~ msgstr "Alt:" + +#~ msgid "Change..." +#~ msgstr "Cambar..." + +#~ msgid "Danger Color" +#~ msgstr "Color de Peligro" + +#~ msgid "Foreground Color" +#~ msgstr "Color de Primer Plano" + +#~ msgid "Info Color" +#~ msgstr "Información del color" + +#~ msgid "Insert Blocks" +#~ msgstr "Insertar bloques" + +#~ msgid "Primary Color" +#~ msgstr "Color primario" + +#~ msgid "Snippets are loading..." +#~ msgstr "Snippets están cargándose... " + +#~ msgid "Success Color" +#~ msgstr "Color de logro" + +#~ msgid "Title:" +#~ msgstr "Título:" + +#~ msgid "Upload an image from your computer" +#~ msgstr "Subir una imagen desde su computadora" + +#~ msgid "Warning Color" +#~ msgstr "Color de Precaución" + +#~ msgid "or" +#~ msgstr "o" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_MX.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_MX.po new file mode 100644 index 0000000..1d50fdc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_MX.po @@ -0,0 +1,3466 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Braulio D. López Vázquez , 2023 +# Wil Odoo, 2025 +# Lucia Pacheco, 2025 +# Martin Trigaux, 2025 +# Patricia Gutiérrez Capetillo , 2025 +# Fernanda Alvarez, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Fernanda Alvarez, 2025\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (sugerido)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"La 'etiqueta Alt' especifica un texto alternativo para una imagen, si la " +"imagen no se puede mostrar (conexión lenta, imagen faltante, lector de " +"pantalla ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"La 'etiqueta de título' se muestra como información sobre herramientas " +"cuando coloca el cursor sobre la imagen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(Etiqueta ALT)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(Etiqueta TÍTULO)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL o insertado)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 columnas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 estrellas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 columnas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 columnas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 estrellas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "grados" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Bloques" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Personalizar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Ocurrió un error del servidor. Compruebe que inició sesión correctamente y " +"que el archivo que está guardando tiene el formato adecuado." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Encima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Acepta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Agregar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Agregar columna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Agregar fila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Agregar URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Agregar una sección de bloque de cita." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Agregar un botón." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Agregar una sección de código." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Agregar una columna a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Agregar una columna a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Agregar un enlace." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Agregar una fila encima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Agregar una fila debajo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alerta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Alinear al centro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Alinear a la izquierda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Alinear a la derecha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alineación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Todos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Todos los archivos SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Se cargaron todos los documentos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Se cargaron todas las imágenes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Etiqueta alternativa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Ángulo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anónimo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "¿Está seguro de que desea eliminar este snippet: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "¿De verdad quieres eliminar este archivo?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Relación de aspecto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Utilidades de activos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Archivo adjunto" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL del archivo adjunto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Convertir automáticamente a enlace relativo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Reproducción automática" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Volver a una columna." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fondo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Color de fondo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Posición del fondo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Bloques básicos" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Básico" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Debajo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Título de sección grande." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloque" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Bloques y lluvioso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Desenfocar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Negrita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Borde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Color del borde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Estilo de borde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Ancho del borde" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Brillo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Lista con viñetas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Botón" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "¡Cuidado!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" +"Cambiar la descripción y el cuadro de información sobre herramientas del " +"medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Lista de pendientes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Selecciona un registro..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtro de color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Colores" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Columna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Colores comunes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflicto de contenido" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contraste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Convertir en 2 columnas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Convertir en 3 columnas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Convertir en 4 columnas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copiar enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copie y pegue su URL o inserte su código aquí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "No se pudo instalar el módulo %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "No fue posible subir el archivo \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Portada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Crear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Crear una lista numerada." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Crear una lista de viñetas sencilla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Crear un URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Recortar imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "%s personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Rayado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Predeterminado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Predeterminado + Redondeado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Defina un gradiente personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Eliminar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Eliminar tabla actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descripción" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispositivos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Descartar registro" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "¿Desea instalar la aplicación %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documentos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Punteado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Doble" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Haga doble clic para editar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Arrastre y suelte el bloque de creación." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar contenedor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Colores dinámicos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Marcador de posición dinámico" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"ERROR: no se pudieron obtener los URL de descarga de la biblioteca de " +"medios." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Editar enlace" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Editar imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Editar descripción del archivo multimedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"No se recomienda editar un archivo integrado a través de este editor, ya que" +" evitará que se actualice durante futuras actualizaciones de aplicación." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Insertar imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Insertar video de YouTube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Insertar la imagen en el documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Insertar el video de YouTube en el documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Cita vacía" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Esperado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Extender a la esquina más cercana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Extender al lado más cercano" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Extender a la esquina más lejana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Extender al lado más lejano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Se subió el archivo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Rellenar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Rellenar + Redondeado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Color de relleno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Primer panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Plano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexible" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Voltear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Voltear horizontalmente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Voltear verticalmente" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Formas flotantes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Flotante" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Color de la fuente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Tamaño de la fuente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "No puedes soltar el bloque aquí por algunos motivos técnicos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Pantalla completa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Consiga la imagen perfecta al buscar en nuestra biblioteca de fotos e " +"ilustraciones libres de derechos de autor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradiente" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutamiento HTTP " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Encabezado 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Encabezado 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Encabezado 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Encabezado 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Encabezado 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Encabezado 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Título 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Título 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Título 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Título 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Título 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Título 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Altura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Ocultar logo de Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Ocultar botón de pantalla completa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Ocultar controles de reproductor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Ocultar botón de compartir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icono" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formato de icono" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Tamaño de icono 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Tamaño de icono 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Tamaño de icono 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Tamaño de icono 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Tamaño de icono 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Iconos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Perderás todos los cambios sin guardar si descartas las ediciones actuales. " +"Cancela para regresar al modo de edición." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Si restablece este archivo, todas sus personalizaciones se perderán porque " +"se regresará al archivo predeterminado." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustraciones" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formato de imagen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Altura de la imagen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Fuente de la imagen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Ancho de la imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Padding de imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Imágenes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Texto en línea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Insertar una calificación mayor a 3 estrellas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Insertar una calificación mayor a 5 estrellas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Insertar una tabla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Insertar un video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Insertar arriba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Insertar un separador de regla horizontal." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Insertar una imagen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Insertar abajo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Insertar a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Insertar archivo multimedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Insertar o editar enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Insertar contenido personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Insertar a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Insertar tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Insertar su firma." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instalar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Instalación en curso" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valor de campo no válido para %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Elementos invisibles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Elemento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Archivo JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Grande" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Izquierda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Líneas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Descripción del enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Enlace copiado al portapapeles." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Vincular con" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Cargar más..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Bucle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Color principal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Herramientas de marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Medios" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Título de sección mediana." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Más información sobre esta aplicación." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Mover hacia abajo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Mover a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Mover a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Mover hacia arriba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Mis imágenes" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nombre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navegación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "No" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Sin URL especificado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "No se encontraron documentos." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "No se encontraron imágenes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "No hay ubicación donde soltar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "No hay más registros" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "No se encontraron pictogramas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Lista numerada" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Pruebas de editor de Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Solo archivos SCSS personalizados" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Solo archivos SCSS de página" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Solo vistas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Abrir en una pestaña nueva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Abrir en una ventana nueva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimizado" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Archivo adjunto original (no optimizado, sin tamaño ajustado)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Orígenes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contorno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Contorno + Redondeado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opciones de página" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bloque de párrafo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Pegar como URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Patrones" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Posición" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Vista previa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primario" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Calidad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Cotización" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Campo Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Campo Qweb de contacto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Campo Qweb de fecha" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Campo Qweb fecha y hora" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Campo Qweb de duración" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Campo Qweb flotante" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Campo Qweb HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Campo Qweb de imagen" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Campo Qweb entero" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Campo Qweb Many2One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Campo Qweb monetario" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Campo Qweb relativo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Campo Qweb de selección" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Campo Qweb de texto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb del campo qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Campo de solo lectura" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" +"Redirigir al usuario a otro lado al hacer clic en el archivo multimedia." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Remover (ELIMINAR)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Remover bloque" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Remover actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Remover enlace" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Remover color seleccionado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Borrar columnas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Remover columna actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Remover fila actual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Remover formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Remover enlace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Renombrar %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Repetir patrón" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Reemplazar " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Reemplazar medios" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Restablecer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Restablecer imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Restablecer tamaño" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Restablecer recorte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Restablecer transformación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Aún no es posible restablecer vistas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Redimensionar a tamaño predeterminado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Redimensionar a tamaño completo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Redimensionar a la mitad del tamaño" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Redimensionar a un cuarto del tamaño" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotar a la izquierda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotar a la derecha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Fila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Archivo SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturación" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Guardar e instalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Guardar y actualizar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Guardar registro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Buscar un documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Buscar un pictograma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Buscar una imagen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Busque un bloque (por ejemplo, números, muro de imágenes, etc.)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Busca registros..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Buscar más..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Buscar más registros" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secundario" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Selecciona un bloque de tu página para darle estilo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Seleccionar un medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separador" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Error de servidor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Sombra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forma: Círculo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forma: Redonda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Mostrar imágenes optimizadas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Firma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Tamaño 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Tamaño 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Tamaño 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Tamaño 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Tamaño 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Pequeño" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Título de sección pequeña." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Sólido" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Sólidos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Alguien con mayores derechos modificó esta área antes, por lo que no puede " +"modificarlo." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Especiales" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Estructura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Sugerencias" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Cambiar dirección" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Cambiar la dirección del texto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opciones de tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Herramientas de tabla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID de plantilla: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Color del texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Alinear texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Estilo de texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Parece que la URL no funciona." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "La URL parece válida." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "La fecha y hora %s no coincide con el formato %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"El documento ya se guardó de alguien con un historial diferente para el " +"modelo %, campo % con ID %." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "La URL que proporcionó no hace referencia a ningún video compatible" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "La URL que proporcionó no es válida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "La URL que proporcionó no es válida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Se usará la versión de la base de datos.\n" +" Si necesita guardar sus cambios, copie el contenido a continuación y edite el nuevo documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Colores del tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Hay un conflicto entre su versión y la versión en la base de datos." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Este URL es inválido. No se puede actualizar la vista previa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Este bloque es obsoleto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "¡Este documento no está guardado!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Este archivo es un archivo adjunto de vista pública." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Este archivo está adjunto al registro actual." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Esta imagen es una imagen externa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"No se puede recortar este tipo de imagen.
Si desea recortarla, primero " +"descárguela de su origen y súbala a Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Título" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Etiqueta de título " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Suelte este bloque para hacer cambios y utilice las nuevas opciones en la " +"última versión." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Para guardar un snippet primero debemos guardar todas sus modificaciones " +"anteriores y actualizar la página." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Actividades pendientes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Tostadora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Alternar negritas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Alternar lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Alternar giro de icono" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Alternar cursiva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Alternar lista ordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Alternar tachado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Alternar subrayado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Alternar lista desordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Información sobre herramientas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Llevar el seguimiento de tareas con una lista de pendientes." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformar la fotografía" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transforme la imagen (haga clic dos veces para restablecer la " +"transformación)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traducir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Colores transparentes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Intente buscar otras palabras clave." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Escriba \"/\" para acceder a los comandos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL o correo electrónico" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Desalinear" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Inesperado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Subir un documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Subir una imagen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "El formato de la imagen subida no es compatible. Intente con:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "El formato de la imagen subida no es compatible. Intente con: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formato de video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Código de video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"Los videos se silencian cuando la reproducción automática está habilitada" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Paquetes de vistas y activos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Advertencia: después de cerrar este cuadro de diálogo se descartará la " +"versión en la que estaba trabajando y nunca volverá a estar disponible." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Ondulado" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Subprueba de convertidor del editor web" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Prueba de convertidor del editor web" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Ancho" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Escriba algo..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Sí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Puede subir documentos con el botón ubicado en la esquina superior izquierda" +" de la pantalla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Puede subir imágenes con el botón ubicado en la esquina superior izquierda " +"de la pantalla." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Debe especificar datos o un URL para crear un archivo adjunto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Su URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "YouTube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Ampliar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Reducir" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "Agregar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automático" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "oscurecer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "predeterminado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusión" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "aclarar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplicar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "superponer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "pantalla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "gestión de mensajes de WebSocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.ejemplo.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_PE.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_PE.po new file mode 100644 index 0000000..ede0fc6 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_PE.po @@ -0,0 +1,1515 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-06-17 19:19+0000\n" +"Last-Translator: Carlos Eduardo Rodriguez Rossi \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Agregar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Por Defecto" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Ayuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Info" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Enlace" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Medio" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ninguno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Vista Previa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Remover" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Restablecer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Buscar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "ir.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "ir.qweb.field" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +#, fuzzy +msgid "ir.qweb.field.barcode" +msgstr "ir.qweb.field.date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "ir.qweb.field.contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "ir.qweb.field.date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "ir.qweb.field.datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "ir.qweb.field.duration" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "ir.qweb.field.float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "ir.qweb.field.html" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "ir.qweb.field.image" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "ir.qweb.field.integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "ir.qweb.field.many2one" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "ir.qweb.field.monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "ir.qweb.field.qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "ir.qweb.field.relative" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "ir.qweb.field.selection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "ir.qweb.field.text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "<!DOCTYPE html>" +#~ msgstr "<!DOCTYPE html>" + +#~ msgid "or" +#~ msgstr "o" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_VE.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_VE.po new file mode 100644 index 0000000..ac5b8d8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/es_VE.po @@ -0,0 +1,1511 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-05-15 18:50+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/" +"language/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Añadir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Vínculo" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Vista previa" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Reiniciar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Buscar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "Tabla" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.adjunto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "desconocido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "<!DOCTYPE html>" +#~ msgstr "<!DOCTYPE html>" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/et.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/et.po new file mode 100644 index 0000000..c5da251 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/et.po @@ -0,0 +1,3443 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Andre Roomet , 2022 +# Algo Kärp , 2022 +# Oliver Ernest, 2022 +# Martin Talts , 2022 +# Martin Aavastik , 2022 +# Helen Sulaoja , 2022 +# Piia Paurson , 2022 +# Eneli Õigus , 2022 +# Rivo Zängov , 2022 +# Patrick-Jordan Kiudorv, 2022 +# JanaAvalah, 2023 +# Martin Trigaux, 2023 +# Katrin Kampura, 2023 +# Stevin Lilla, 2024 +# Anna, 2024 +# Triine Aavik , 2025 +# Leaanika Randmets, 2025 +# Arma Gedonsky , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Arma Gedonsky , 2025\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (originaal)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (soovitatud)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT silt)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(PEALKIRI silt)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL or põimise kood)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 veergu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 tähte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 veergu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 veergu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 tähte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Plokid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Kohanda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Üleval" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Aktsepteerib" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Lisa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Lisa veerg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Lisa rida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Lisa URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Lisa plokitsitaadi sektsioon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Lisa nupp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Lisage koodi sektsioon." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Lisa veerg vasakule" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Lisa veerg paremale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Lisa link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Lisa rida ülesse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Lisa rida alla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Hoiatus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Joonda keskele" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Joonda vasakule" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Joonda paremale" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Joondus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Kõik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Kõik SCSS failid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Kõik dokumendid on laetud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Kõik pildid on laetud" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt silt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Angle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animeeritud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonüümne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Kinnita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Kas olete kindel, et soovite selle faili kustutada?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Kuvasuhe" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Manus" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Manuse URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automaatne konverteerimine relatiivseks lingiks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automaatne esitamine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Tagasi esimese veeru juurde." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Taust" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Taustavärv" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Tausta asukoht" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Alus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Põhiplokid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Põhi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "All" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Suure sektsiooni pealkiri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Laigud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokeeri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Hägustama" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Rasvane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Ääris" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Äärise värv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Äärise stiil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Ääre laius" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Heledus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Punktidega nimekiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Nupp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Tühista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Ettevaatust !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Keskel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Muutke meedia kirjeldust ja vihjemulli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Kontrollnimekiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Vali kirje..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Sulge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kood" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Värv" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Värvifilter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Värvid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Veerg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Tavalised värvid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Kinnita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Kinnitus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Sisu konflikt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Teisendage 2 veergu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Teisendage 3 veergu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Teisendage 4 veergu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopeeri link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopeeri-kleebi enda URL või põimise kood siia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Moodulit ei saanud installida %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Kaas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Loo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Loo URL" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Loomise kuupäev" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Kärbi pilti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Kohandatud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Kohandatud %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Tühikutega" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Vaikimisi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Vaikimisi + ümardatud" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Määratle kohandatud gradient" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Kustuta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Kustuta %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Kustuta antud tabelit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Kirjeldus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Seadmed" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Loobu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Loobu kirjest" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Kas soovite intallida %s rakendust?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumendid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Täpitatud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Topelt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Topeltklõps muutmiseks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Lohista ja lisa plokke. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplikaatkonteiner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dünaamilised värvid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dünaamilised tekstid" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Muuda link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Muuda pilt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Muuda meedia kirjeldust" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Manustatud pilt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Manusta Youtube video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Lisa pilt dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Tühi tsitaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Ootuspärane" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Laienda lähima nurgani" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Laienda lähima küljeni" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr " Laienda kaugema nurgani" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Laienda kaugema küljeni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Fail on üles laaditud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Täida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Täidetud + ümardatud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Täida värv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Esimene paneel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Lame" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Paindlik" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Pööra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Pööra horisontaalselt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Pööra vertikaalselt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Hõljuvad kujundid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Teksti värv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Kirja suurus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Tehnilistel põhjustel ei saa seda plokki siia lohistada." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Täisekraan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Pealkiri 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Pealkiri 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Pealkiri 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Pealkiri 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Pealkiri 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Pealkiri 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Pealkiri 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Pealkiri 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Pealkiri 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Pealkiri 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Pealkiri 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Pealkiri 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Kõrgus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Peida Dailymotion logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Peida täisekraani nupp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Peida mängija juhtnupud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Peida jagamisnupp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikoon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Ikooni formaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Ikooni suurus 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Ikooni suurus 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Ikooni suurus 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Ikooni suurus 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Ikooni suurus 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikoonid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Kui te loobute praegustest muudatustest, kaotatakse kõik salvestamata " +"muudatused. Loobuge, et minna tagasi muutmisrežiimi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustratsioonid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Pilt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Pildi formaat" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Pildi kõrgus" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Pildi Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Pildi laius" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Pildid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Tindipott" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Reasisene tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Hinda üle 3 tärni." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Hinda üle 5 tärni." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Sisesta tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Sisesta video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Sisesta ülesse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Sisestage horisontaalse reegli eraldaja." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Sisesta pilt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Sisesta alla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Sisesta vasakule" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Sisesta meedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Sisesta või muuda linki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Sisesta personaliseeritud sisu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Sisesta paremale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Sisesta tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Sisesta enda allkiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Paigalda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Installi %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installimine on pooleli" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Välja väärtus on vigane %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Nähtamatud elemendid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Üksus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS fail: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Suur" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendas" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Vasak" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineaarne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Read" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Lingi silt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link kopeeritud lõikelauale." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Loend" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Laadi rohkem... " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Kordamine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Peamine värv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Turundustööriistad" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Meedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Levitamise vahend" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Keskmise sektsiooni pealkiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Rohkem infot rakenduse kohta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Liigu alla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Liigu vasakule" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Liigu paremale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Liigu ülesse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Minu pildid" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nimi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigeerimine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ei" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL'i pole määratud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Dokumente ei leitud." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Pilte ei leitud." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Pole kohta, kuhu lohistada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Rohkem kirjed pole" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Piktogramme ei leitud." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Pole" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Tavaline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Nummerdatud nimekiri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Editor'i testid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Ainult kohandatud SCSS failid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Ainult lehe SCSS failid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Ainult vaadetes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Ava uuel vahelehel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Ava uues aknas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimeeritud" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Algne (optimiseerimata, muutmata suurusega) manus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Päritolu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Raam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Kontuur + ümardatud" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Varuaeg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Lehe valikud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Paragrahvi plokk." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Kleebi URL'ina" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Mustrid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Amet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Eelvaade" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Peamine" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvaliteedikontroll" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Pakkumus" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" +"2689\n" +"Qweb Väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb Kontakti väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Kuupäeva Väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Kuupäev/kellaaaeg väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Gweb kestvus Väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb ujukomaarv väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb HTML Väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Pildi Väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb täisarvu väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" +"2700\n" +"Qweb Many to One väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Raha Väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb relatiivne väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb valiku väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb teksti väli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb väli qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radiaalne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Ainult loetav väli" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Klõpsates meediale, suuna ümber mujale." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Eemalda (KUSTUTA)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Eemalda plokk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Eemalda praegune" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Eemalda link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Eemalda valitud värv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Eemalda veerud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Eemalda praegune veerg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Eemalda praegune rida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Eemalda formaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Eemalda link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Nimeta ümber %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Korda mustrit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Asenda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Asenda meedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Lähtesta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Nulli pilt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Lähtesta suurus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Lähtesta kärpimine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Lähtesta teisendus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Vaadete lähtestamist veel ei toetata" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Muuda suurust vaikimisi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Muuda suurust täielikult" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Parem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Pööra vasakule" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Pööra paremale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Rida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS fail: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Küllastus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Salvesta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Salvesta ja installi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Salvesta ja laadi uuesti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Salvesta kirje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Otsi dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Otsi piktogrammi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Otsi pilti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Otsi plokki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Otsin kirjeid.." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Otsi veel..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Otsi rohkemate kirjete kuvamiseks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Teisejärguline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Vali plokk, et luua plokile stiil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Vali meedia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Eraldaja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Seepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Server error" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Vari" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Kujundus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Kujund: ring" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Kujund: ümar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Kujund: pisipilt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Näita optimeeritud pilte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Allkiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Suurus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Suurus 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Suurus 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Suurus 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Suurus 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Suurus 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Väike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Väikse sektsiooni pealkiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solids" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Erilised" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Palgaliik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stiil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Soovitused" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Vaheta suunda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Muuda teksti suunda." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Tabeli valikud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Tabeli tööriistad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Malli ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Teksti värv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Teksti joondus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Teksti stiil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL ei tööta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL on õige." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Kuupäev ja kellaaeg %s ei vasta formaadile %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Sisestatud URL ei viita ühelegi toetatud videole." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Sisestatud URL on kehtetu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Sisestatud URL ei ole kehtiv." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Teema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Teema värvid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "See URL on kehtetu. Eelvaadet ei saanud uuendada." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Antud plokk on aegunud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Antud dokument ei ole salvestatud!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "See fail on seotud praeguse kirjega." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Antud pilt on väline pilt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Tiitel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Pealkirja silt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Röster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Toggle bold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Lülita kontrollnimekiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Lülita ikooni keerutamist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Lülita kaldkiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Läbikriipsutuse lülitamine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Lülita sisse/välja alla joonimine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Vihje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Muuda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Muuda pilti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Muuda pilti (tee topeltklõps muutuse lähtestamiseks)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Tõlgi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Läbipaistvad värvid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Proovi otsida teisi märksõnu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tüüp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Sisesta \"/\" käskude jaoks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL või e-post" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Tühista joondamine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Ootamatu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Lae dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Laadi pilt üles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Üles laetud pildi formaati ei toetata. Proovige:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Üles laetud pildi formaati ei toetata. Proovige: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Video vormindamine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video kood" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videod on vaigistatud, kui automaatne esitamine on lubatud" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Ava" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Vaadete ja varade kogumikud" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Laineline" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Veebiredaktori konverteri alamtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Veebiredaktori konverteri test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Vidinad" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Laius" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Kirjuta midagi..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Jah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Sinu URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Suurenda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Vähenda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "lisa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "ja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automaatne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "tumestama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "vaikimisi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "välistamine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "helendama" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "korrutama" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "kattuvus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ekraan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videod" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket sõnumite käsitlus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fa.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fa.po new file mode 100644 index 0000000..230d8ff --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fa.po @@ -0,0 +1,3475 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# سید محمد آذربرا , 2023 +# Maziar Niaki , 2023 +# Mohammad Tahmasebi , 2023 +# Faraz Sadri Alamdari , 2023 +# Hamid Darabi, 2023 +# Hamed Mohammadi , 2023 +# Mohsen Mohammadi , 2023 +# Hanna Kheradroosta, 2023 +# Ali Reza Feizi Derakhshi, 2023 +# Martin Trigaux, 2023 +# Hamid Ahmadimoghaddam, 2023 +# F Hariri , 2024 +# Mostafa Barmshory , 2024 +# Tiffany Chang, 2025 +# Naser mars, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Naser mars, 2025\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (اصلی)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "٪sپیکسل (پیشنهادی)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"متن 'تگ Alt' متن جایگزینی را برای یک تصویر مشخص می‌کند، اگر تصویر قابل نمایش" +" نباشد (اتصال کند، تصویر گم شده، خواننده صفحه ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"«برچسب عنوان» زمانی که نشانگر را روی تصویر قرار دهید به‌صورت یک ابزارک " +"نمایان می‌شود." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(برچسب ALT)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" +"```html\n" +"(عنوان برچسب)\n" +"```" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "I'm sorry, but I can't assist with that request." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 ستون" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "۲x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 ستاره" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "سه ستون" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "۴ ستون" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "۴x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "۵ ستاره" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5 برابر" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "۹۰" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" +"```html\n" +"٪\n" +"```" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" +"```html\n" +"درجه\n" +"```" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" +"```html\n" +"و\n" +"```" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" +"```html\n" +"ایکس\n" +"```" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" +"```html\n" +"بلوک‌ها\n" +"```" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" +"```html\n" +"سفارشی‌سازی\n" +"```" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "فوق" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "قبول می کند" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "افزودن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "اضافه کردن ستون" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "ردیف را اضافه کنید " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "اضافه کردن URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "افزودن یک ستون سمت چپ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "افزودن یک ستون سمت راست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "آدن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "ایری و زیگز" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "اخطار" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "مرکز تراز کردن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "چپ‌چین" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "راست‌چین" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "تراز" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "همه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "تمام پوشه‌های SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "تمام اسناد بارگذاری شده‌اند" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "همه تصاویر بارگذاری شده‌اند" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "برچسب جایگزین" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "زاویه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "متحرک " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "ناشناس" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "اعمال" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "نسبت تصویر" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "ابزارهای دارایی" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "پیوست" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "پیوست URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "به‌طور خودکار به پیوند نسبی تبدیل کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "پخش خودکار" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "پس‌زمینه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "رنگ پس‌زمینه" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "موقعیت پس‌زمینه" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "پایه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "بلوک‌های پایه" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "در زیر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "بلاب‌ها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "مسدود کردن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "بلوک‌ها و بارانی" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "محو کردن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "پررنگ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "حاشیه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "رنگ حاشیه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "سبک حاشیه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr " عرض حاشیه" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "برانن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "روشنایی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "فهرست گلوله‌ای" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "دکمه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "لغو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "مرکز" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "توضیح رسانه و راهنمای ابزار را تغییر دهید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "چک‌لیست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "انتخاب یک رکورد..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "بستن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "کد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "رنگ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "فیلتر رنگ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "رنگها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "ستون" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "رنگ‌های عمومی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "تایید کردن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "تاییدیه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "تضاد محتوا" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "کنتراست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "کپی لینک" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "کپی-پیست آدرس URL یا کد درج خود را اینجا بنویسید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "فایل \"%s\" بارگیری نشد." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "پوشش" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "ایجاد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "ایجاد یک URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "ایجادشده در" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "برش تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "سفارشی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "سفارشی‌سازی %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "دِیلیموشِن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "خط چین" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "پیش‌فرض" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "پیش‌فرض + گرد" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "تعریف یک گرادیان سفارشی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "حذف" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "حذف %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "توصیف" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "‌دستگاه‌ها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "رها کردن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "حذف رکورد" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "اسناد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "نقطه‌دار" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "دوبل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "برای ویرایش دوبار کلیک کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "بلوک ساختاری را بکشید و رها کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "تکرار کانتینر" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "رنگ‌های پویا" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "مکان‌نمای پویا" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "خطا: نتوانست آدرس‌های دانلود را از کتابخانه رسانه دریافت کند." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "ارلی‌برد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "ویرایش تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "ویرایش توضیحات رسانه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "تعبیه تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "ویدئوی یوتیوب را وارد کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "تصویر را در سند تعبیه کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "ویدئوی یوتیوب را در سند تعبیه کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "نقل قول خالی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "مورد انتظار" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "به نزدیک‌ترین گوشه گسترش دهید" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "گسترش به نزدیک‌ترین طرف" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "به دورترین گوشه گسترش دهید" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "گسترش به دورترین سمت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "فایل بارگذاری شد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "تکمیل کردن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "پر کردن + گرد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "رنگ پس‌زمینه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "فیلتر" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "اولین پانل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "مسطح" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "انعطاف پذیر" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "چرخش" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "افقی وارونه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "عمودی چرخاندن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "اشکال شناور" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "رنگ فونت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "اندازه فونت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "به دلایل فنی، این بلوک نمی‌تواند در اینجا قرار گیرد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "فرمت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "تمام صفحه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "گرادیان" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "مسیریابی HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "هدر ۱" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "هدر ۳" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "

سرتیتر ۴

" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "عنوان ۵" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "
سرفصل ۶
" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "عنوان ۱" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "

سرفصل ۲

" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "

عنوان ۳

" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "

سرخط ۴

" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "عنوان ۵" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "
عنوان ۶
" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "ارتفاع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "مخفی کردن لوگوی Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "مخفی کردن دکمه تمام صفحه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "کنترل‌های پخش‌کننده را مخفی کن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "پنهان کردن دکمه اشتراک‌گذاری" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "شناسه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "شمایل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "قالب بندی نماد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "اندازه آیکون 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "اندازه آیکون ۲x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "اندازه آیکون ۳ برابر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "اندازه نماد 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "اندازه آیکون 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "آیکون‌ها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"اگر ویرایش‌های فعلی را نادیده بگیرید، همه تغییرات ذخیره نشده از بین خواهند " +"رفت. برای بازگشت به حالت ویرایش می توانید لغو کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"اگر این فایل را بازنشانی کنید، تمام سفارشی‌سازی‌های شما از بین خواهد رفت " +"زیرا به فایل پیش‌فرض بازگردانده می‌شود." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "تصاویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "قالب بندی تصویر" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "ارتفاع تصویر" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "منبع تصویر" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "عرض تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "پدینگ تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "تصاویر" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" +"Inkwell\n" +"حوض جوهر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "متن درون‌خطی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "بالا وارد کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "متن را اینجا وارد کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "قرار دادن چپ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "درج رسانه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "وارد کردن یا ویرایش پیوند" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "درج محتوای شخصی‌سازی‌شده" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "درج راست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "نصب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "نصب کنید %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "مقدار نادرست برای فیلد %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "عناصر نامرئی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "آیتم/مورد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "فایل جاوا اسکریپت: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "بزرگ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "آخرین اصلاح در" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "آخرین تغییر توسط" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "آخرین بروز رسانی در" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "چپ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "خطی" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "سطرها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "لینک" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "برچسب لینک" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "لینک به کلیپ‌بورد کپی شد." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "فهرست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "بارگذاری موارد بیشتر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "لوپ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "رنگ اصلی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "ابزارهای بازاریابی" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "ماون" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "رسانه ها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "متوسط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "اطلاعات بیشتر درباره این برنامه." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "به پایین حرکت کن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "حرکت به چپ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "به راست حرکت کن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "حرکت به بالا" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "تصاویر من" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "نام" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "هدایت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "خیر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "هیچ URL مشخص نشده است" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "هیچ سندی یافت نشد." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "تصویری یافت نشد." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "محلی برای رها کردن وجود ندارد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "هیچ رکورد دیگری وجود ندارد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "

هیچ تصویرنگاری یافت نشد.

" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "هیچکدام" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "عادی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "فهرست شماره‌گذاری‌شده" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "تست‌های ویرایشگر Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "فقط فایل‌های SCSS سفارشی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "فقط فایل‌های SCSS صفحه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "فقط نماها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "در پنجره جدید باز کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "بهینه‌سازی شده" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "پیوست اصلی (بهینه‌نشده، تغییر اندازه نداده)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "مبدأ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "خط‌وط کلی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "طرح کلی + گرد" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "حاشیه داخلی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "گزینه‌های صفحه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "چسباندن به عنوان URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "الگوها" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "موقعیت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "پیش‌نمایش" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "اولیه" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "این پنکیک لعنتی چه کار می‌کند، تبریک؟" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "او به تورنتو نرسیده است" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "که او قرار بود به تورنتو برسد" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "کیفیت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "نقل‌قول" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "فیلد Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "فیلد تماس کیو وب" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "فیلد تاریخ Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "میدان Qweb تاریخ و زمان" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "فیلد مدت زمان Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "فیلد فلو Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "فیلد کیو وب اچ تی ام ال" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "تصویر فیلد کیو وب" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "فیلد Qweb عدد صحیح" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "فیلد Qweb بسیاری به یکی" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "فیلد پولی Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "فیلد نسبی Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "انتخاب فیلد Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "فیلد متن Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "فیلد کیو‌وب qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "رادیال" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "فیلد قابل خواندن فقط" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "هنگامی که کاربر روی رسانه کلیک می‌کند، او را به جای دیگری هدایت کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "حذف کنید (حذف)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "حذف بلوک" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "حذف کنونی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "حذف رنگ انتخاب شده" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "حذف ستون‌ها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "حذف فرمت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "حذف لینک" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "تغییر نام %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "الگوی تکرار" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "جایگزین" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "جایگزینی رسانه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "تنظیم مجدد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "تنظیم مجدد تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "تنظیم مجدد اندازه" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "برش مجدد تنظیم کن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "بازنشانی تبدیل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "بازنشانی نماها هنوز پشتیبانی نمی‌شود." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "تغییر اندازه پیش‌فرض" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "تغییر اندازه به صورت کامل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "نیمه تغییر اندازه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "تنظیم اندازه به یک‌چهارم" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "راست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "چرخش به چپ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "چرخاندن به راست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "ردیف" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "فایلSCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "اشباع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "ذخیره" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "ذخیره و نصب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "ذخیره و بارگذاری مجدد" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "ذخیره رکورد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "یک سند جستجو کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "جستجوی یک پیکتوگرام" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "جستجوی تصویر" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "جستجو برای یک بلوک (مثلاً اعداد، دیوار تصویر، ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "جستجو برای رکوردها..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "جستجوی بیشتر..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "جستجو کنید تا رکوردهای بیشتری نمایش داده شوند" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "ثانویه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "یک بلوک را در صفحه خود انتخاب کنید تا آن را سبک دهی کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "انتخاب رسانه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "جداکننده" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "خطای سرور" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "سایه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "شکل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "شكل: دایره" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "شکل: گرد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "شکل: تصویر بندانگشتی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "نمایش تصاویر بهینه‌شده" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "امضا" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "اندازه" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "اندازه ۱x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "سایز 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "اندازه 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "اندازه 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "اندازه ۵x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "کوچک" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "جامد" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "جامدات" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"کسی با حقوق ارتقاء یافته قبلاً این ناحیه را تغییر داده است، بنابراین شما " +"نمی‌توانید آن را خودتان تغییر دهید." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "ویژه‌ها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "ساختار" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "استایل" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "پیشنهادات" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "تغییر جهت" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "میز" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "گزینه‌های جدول" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "شناسه قالب: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "متن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "رنگ متن " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "تراز متن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "استایل متن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "به نظر می‌رسد که URL کار نمی‌کند." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "به نظر می‌رسد URL معتبر است." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "تاریخ و زمان %s با قالب %s مطابقت ندارد" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"سند قبلاً توسط شخصی با تاریخچه متفاوت برای مدل %r، فیلد %r با شناسه %r ذخیره" +" شده بود." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "آدرس اینترنتی ارائه شده به هیچ ویدیوی پشتیبانی شده‌ای اشاره نمی‌کند" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "آدرس اینترنتی ارائه شده نامعتبر است" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "آدرس اینترنتی ارائه شده معتبر نیست" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "تم" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "رنگ‌های تم" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "نسخه‌ای که شما دارید با نسخه موجود در پایگاه داده تضاد دارد." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "این آدرس وب نامعتبر است. پیش‌نمایش به‌روزرسانی نشد." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "این سند ذخیره نشده است!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "این فایل یک پیوست نمایش عمومی است." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "این فایل به رکورد فعلی پیوست شده است." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "این تصویر یک تصویر خارجی است" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"این نوع تصویر برای برش پشتیبانی نمی‌شود.
اگر می‌خواهید آن را برش دهید، " +"لطفاً ابتدا آن را از منبع اصلی دانلود کرده و در اودوو آپلود کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "عنوان" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "
برچسب عنوان
" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"برای ذخیره یک قطعه، باید تمامی تغییرات قبلی شما را ذخیره کنیم و صفحه را " +"مجدداً بارگذاری کنیم." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "اقدامات و پیگیری‌ها" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "توستر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "تغییر حالت بولد" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "فعال کردن لیست بازبینی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "چرخش آیکون را تغییر دهید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "ایتالیک را تغییر دهید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "تغییر فهرست مرتب شده" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "تغییر حالت خط‌خوردگی" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "تغییر زیرخط" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "تغییر فهرست بدون ترتیب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "تبدیل کردن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "تبدیل تصویر" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "تبدیل تصویر (برای بازنشانی تغییرات، دو بار کلیک کنید)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "ترجمه" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "رنگ‌های شفاف" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "سعی کنید با کلیدواژه‌های دیگر جستجو کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "نوع" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "کد \"/\" برای دستورات را وارد کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "آدرس اینترنتی یا ایمیل" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "نامتقارن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "غیرمنتظره" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "یک سند بارگذاری کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "یک تصویر را بارگذاری کنید" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "فرمت تصویر آپلود شده پشتیبانی نمی‌شود. امتحان کنید با:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "فرمت تصویر بارگذاری‌شده پشتیبانی نمی‌شود. با: %s امتحان کنید." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "والنسیا" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "ویدئو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "قالب‌بندی ویدئو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "کد ویدئو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "ویدئوها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "ویدیوها زمانی که پخش خودکار فعال است بی‌صدا هستند" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "نما" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "دسته دارایی‌ها و نماها" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "والدن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"هشدار: پس از بستن این کادر گفتگو، نسخه‌ای که روی آن کار می‌کردید لغو شده و " +"دیگر در دسترس نخواهد بود." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "می‌شود موج‌دار" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "آزمایش فرعی مبدل ویرایشگر وب" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "تست مبدل ویرایشگر وب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "ویجت‌ها" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "عرض" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "چیزی بنویس..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "بله" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "می توانید اسناد را با دکمه واقع در سمت چپ بالای صفحه آپلود کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "برای ایجاد یک پیوست، باید یا داده‌ها یا آدرس URL را مشخص کنید." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "یوتکو" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "آدرس اینترنتی شما" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "یوتیوب" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "بزرگنمایی کردن " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "کوچک‌نمایی کردن " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "افزودن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "و" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "اتوماتیک" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "تیره کن" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "حذف" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "روشن‌تر کردن" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "ضرب کنید" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "پوشش" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "صفحه نمایش" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "ویدیوها" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "مدیریت پیام وب سوکت" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fi.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fi.po new file mode 100644 index 0000000..ac00d1f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fi.po @@ -0,0 +1,3463 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Sanna Edelman , 2022 +# a0002ef8927c0b0b9c58a7cc5f73028e_ba3d803 , 2022 +# Jukka Paulin , 2022 +# Petteri Torssonen , 2022 +# Kari Lindgren , 2022 +# Veikko Väätäjä , 2022 +# Miika Nissi , 2022 +# Miku Laitinen , 2022 +# Tuomo Aura , 2022 +# Kim Asplund , 2022 +# Jarmo Kortetjärvi , 2022 +# Martin Trigaux, 2023 +# Ossi Mantylahti , 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Alkuperäinen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (ehdotettu)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt-tunniste' määrittää vaihtoehtoisen tekstin kuvalle, jos kuvaa ei voida " +"näyttää (hidas yhteys, puuttuva kuva, ruudunlukuohjelma ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Otsikkotunniste' näytetään työkaluvihjeenä, kun viet kuvan yläpuolelle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT-tunniste)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE-tunniste)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL-osoite tai upota)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 saraketta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 tähteä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 saraketta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 saraketta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 tähteä" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "ast" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Lohkot" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Mukauta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Tapahtui palvelinvirhe. Tarkista, että olet kirjautunut oikein ja että " +"tallentamasi tiedosto on oikein muotoiltu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Yläpuolella" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Hyväksytään" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Lisää" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Lisää sarake" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Lisää rivi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Lisää URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Lisää blockquote-osio." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Lisää painike." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Lisää koodiosa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Lisää sarake vasemmalle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Lisää sarake oikealle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Lisää linkki." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Lisää rivi yläpuolelle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Lisää rivi alapuolelle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Varoitus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Tasaa keskelle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Tasaa vasemmalle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Tasaa oikealle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Kohdistus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Kaikki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Kaikki SCSS-tiedostot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Kaikki asiakirjat on ladattu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Kaikki kuvat on ladattu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt-tunniste" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Kulma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animoitu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonyymi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Muuta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Oletko varma, että haluat poistaa pätkän: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Haluatko varmasti poistaa tämän tiedoston?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Kuvasuhde" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Sisältötyökalut" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Liite" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Liitteen URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automaattinen muuntaminen suhteelliseksi linkiksi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automaattinen toisto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Takaisin yhteen sarakkeeseen." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Tausta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Taustaväri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Taustakuvan sijainti" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Pohja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Peruslohkot" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Perusasiat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Alla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Iso väliotsikko." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Ryhmä" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Lohkot & sateinen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Sumennus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Lihavoitu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Reunus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Reunuksen väri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Reunaviivan tyyli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Reunuksen leveys" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Kirkkaus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Luettelo ranskalaisilla viivoilla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Nappi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Peruuta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Varovasti!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Keskellä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Muuta median kuvausta ja työkaluvihjettä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Tarkistuslista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Valitse tietue..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Sulje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Koodi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Väri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Värisuodatin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Värit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Sarake" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Yleiset värit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Vahvista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Vahvistus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Sisällön ristiriita" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrasti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Muunna 2 sarakkeeksi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Muunna 3 sarakkeeksi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Muunna 4 sarakkeeksi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopioi linkki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopioi ja liitä URL-osoite tai upotuskoodi tähän" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Moduulia ei voitu asentaa %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Tiedostoa \"%s\" ei voitu ladata." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Kansi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Luo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Luo luettelo, jossa on numerointi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Luo yksinkertainen luettelomuotoinen lista." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Luo URL-osoite." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Rajaa kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Mukautettu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Mukautettu %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Katkoviiva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Oletus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Oletus + pyöristetty" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Määritä mukautettu kaltevuus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Poista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Poista %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Poista nykyinen taulukko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Kuvaus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Laitteet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Hylkää" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Hävitä tietue" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Haluatko asentaa \"%s\" sovelluksen?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumentit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Pisteviiva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Tuplaviiva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Muokkaa kaksoisnapsauttamalla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Vedä ja pudota rakennuspalikka." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Kahdenna säiliö" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynaamiset värit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynaaminen paikanvaraaja" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "VIRHE: latausurlia ei saatu mediakirjastosta." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Muokkaa linkkiä" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Muokkaa kuvaa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Muokkaa median kuvausta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Sisäänrakennetun tiedoston muokkaaminen tämän editorin avulla ei ole " +"suositeltavaa, koska se estää sen päivittämisen tulevien sovelluspäivitysten" +" aikana." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Upota kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Upota Youtube-video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Upota kuva asiakirjaan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Upota youtube-video asiakirjaan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Tyhjä lainaus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Odotettu " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Jatketaan lähimpään kulmaan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Jatketaan lähimmälle puolelle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Jatketaan kauimmaiseen nurkkaan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Jatketaan kauimmaiselle puolelle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Tiedosto on ladattu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Täytä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Täyttö + Pyöristetty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Täyttöväri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Suodatin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Ohjauspaneelin painikkeet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Litteä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Joustava" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Käännä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Käännä vaakasuoraan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Käännä pystysuoraan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Kelluvat muodot" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Kellukkeet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Kirjasimen väri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Fonttikoko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Tätä lohkoa ei voida teknisistä syistä tiputtaa tähän" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Muotoilu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Koko ruutu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Hae täydellinen kuva etsimällä tekijänoikeusvapaiden valokuvien ja " +"kuvitusten kirjastostamme." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Liukuväri" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-reititys" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Otsikko 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Otsikko 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Otsikko 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Otsikko 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Otsikko 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Otsikko 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Väliotsikko 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Väliotsikko 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Väliotsikko 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Väliotsikko 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Väliotsikko 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Väliotsikko 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Korkeus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Piilota Dailymotion-logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Piilota koko näytön painike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Piilota toiston ohjainpainikkeet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Piilota jakopainike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Kuvake" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Kuvakkeen muotoilu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Kuvakkeen koko 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Kuvakkeen koko 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Kuvakkeen koko 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Kuvakkeen koko 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Kuvakkeen koko 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Kuvakkeet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Jos perut nykyiset muutokset, kaikki tallentamattomat muokkaukset katoavat. " +"Voit perua palataksesi muokkaustilaan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Jos nollaat tämän tiedoston, kaikki mukautuksesi menetetään, koska se " +"palautetaan oletustiedostoksi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Kuvitukset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Ei muotoilua" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Kuvan lorkeus" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Kuvan lähde" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Kuvan leveys" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Kuvan sisämarginaali" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Kuvat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline-teksti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Lisää yli 3 tähden luokitus." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Lisää yli 5 tähden luokitus." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Lisää taulukko." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Lisää video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Lisätään ylle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Lisää vaakasuora erotin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Lisää kuva." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Lisää alle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Lisää vasemmalle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Lisää media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Lisää tai muokkaa linkkiä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Lisää mukautettua sisältöä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Aseta oikealle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Lisää taulukko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Lisää allekirjoituksesi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Asenna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Asenna %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Asennus käynnissä" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Kentän %s arvo on virheellinen: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Näkymättömät elementit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Kohde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS-tiedosto: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Suuri" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Vasen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineaarinen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Rivit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Linkki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Linkin otsikko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Linkki kopioitu leikepöydälle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Linkki kohteeseen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Lataa lisää..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Silmukka" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Pääväri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Markkinointityökalut" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Keskikokoinen lohkon otsikko." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Lisätietoja tästä sovelluksesta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Siirrä alas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Siirrä vasemmalle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Siirrä oikealle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Siirrä ylös" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Minun kuvani" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nimi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigaatio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ei" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL-osoitetta ei ole määritetty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Asiakirjoja ei löytynyt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Kuvia ei löytynyt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Ei paikkaa, johon voi tiputtaa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Ei enempää tietueita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Piktogrammeja ei löytynyt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ei mitään" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normaali" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Numeroitu luettelo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Editorin testit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Vain mukautetut SCSS-tiedostot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Vain sivun SCSS-tiedostot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Vain näytöt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Avaa uudessa välilehdessä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Avaa uudessa ikkunassa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimoitu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Alkuperäinen (optimoimaton, kokoa muuttamaton) liitetiedosto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Alkuperät" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Ääriviivat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Outline + pyöristetty" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Sisämarginaali" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Sivuasetukset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Tekstikappaleen lohko." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Liitä URL-osoitteena" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Mallit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Asema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Esikatselu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Ensisijainen" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Mitä h-vettiä tuo pannukakku tekee, tabernaakkeli?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Se ei saapunut Torontoon" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Että hänen piti saapua Torontoon" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Laatu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Sitaatti" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb-kenttä" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb kentän kontakti" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb-kenttä Päivämäärä" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb-kenttä Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb-kentän kesto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb-kenttä Liukuluku" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb-kenttä HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb kentän kuva" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb-kenttä Kokonaisluku" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb-kenttä Monesta yhteen" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb-kenttä Raha" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb-kenttä Suhteellinen" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb-kenttä Valinta" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb-kenttä Teksti" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb-kenttä qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radiaalinen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Vain luku kenttä" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Ohjaa käyttäjä muualle, kun hän klikkaa mediaa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Poista (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Poista lohko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Poista nykyinen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Poista linkki" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Poista valittu väri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Poista sarakkeet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Poista nykyinen sarake" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Poista nykyinen rivi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Poista muotoilu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Poista linkki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Nimeä uudelleen %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Toista kuvio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Korvaa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Vaihda media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Palauta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Nollaa kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Nollaa koko" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Nollaa sato" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Nollaa siirtymämuunnos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Näkymien palauttamista ei vielä tueta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Muuta oletuskokoiseksi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Muuta kokonaiseksi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Muuta puoleen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Muuta neljännekseen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Oikea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Pyöritä vasemmalle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Pyöritä oikealle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Rivi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS-tiedosto: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturaatio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Tallenna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Tallenna ja asenna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Tallenna ja lataa uudelleen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Tallenna tietue" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Etsi asiakirjaa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Hae piktogrammia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Hae kuvaa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Hae lohkoa (esim. numerot, kuvaseinä, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Etsi tietueita..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Etsi lisää..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Etsi näyttääksesi lisää tietueita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Toissijainen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Valitse lohko sivultasi muotoillaksesi sen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Valitse media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Erotin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Punaruskea (seepia)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Palvelinvirhe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Varjo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Muoto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Muoto: Ympyrä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Muoto: Pyöristetty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Muoto: Pienkuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Näytä optimoidut kuvat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Allekirjoitus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Koko" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Koko 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Koko 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Koko 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Koko 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Koko 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Pieni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Pieni väliotsikko." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Kiinteä" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Kiinteät" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Joku, jolla on laajennetut oikeudet, on aiemmin muokannut tätä aluetta, " +"joten et voi muokata sitä itse." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Erikoisuudet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Estructura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Tyyli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Ehdotukset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Vaihda suunta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Vaihda tekstin suuntaa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Pöytä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Taulukkovaihtoehdot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Taulukkotyökalut" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Mallipohjan ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Teksti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Tekstin väri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Tekstin tasaus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Tekstityyli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL-osoite ei näytä toimivan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL-osoite vaikuttaa pätevältä." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Päivämäärä ja aika %s ei vastaa muotoa %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Joku on jo tallentanut asiakirjan. Sillä on eri historia mallin %r, kentän " +"%r ja tunnuksen %r osalta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Annettu url ei viittaa mihinkään tuettuun videoon" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Annettu url on virheellinen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Annettu url ei ole voimassa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Käytetään tietokannassa olevaa versiota.\n" +" Jos haluat säilyttää muutokset, kopioi alla oleva sisältö ja muokkaa uutta asiakirjaa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Teema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Teeman värit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Versiosi ja tietokannassa olevan version välillä on ristiriita." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Tämä URL-osoite on virheellinen. Esikatselua ei voitu päivittää." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Tämä lohko on vanhentunut" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Tätä asiakirjaa ei ole tallennettu!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Tämä tiedosto on julkinen liitetiedosto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Tämä tiedosto on liitetty nykyiseen tietueeseen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Tämä kuva on ulkoinen kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Tämäntyyppisiä kuvia ei voi rajata.
Jos haluat rajata kuvan, lataa se " +"ensin alkuperäisestä lähteestä ja lataa se Odoon." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Otsikko" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Otsikkotunniste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Jos haluat tehdä muutoksia, jätä tämä lohko pois ja käytä viimeisimmän " +"version uusia vaihtoehtoja." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Jos haluat tallentaa pätkän, on tallennettava kaikki aiemmat muutokset ja " +"ladattava sivu uudelleen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Tehtävälista" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Huomioviesti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Vaihda lihavointi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Vaihda tarkistuslista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Kuvakkeen pyöräytyksen vaihtaminen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Vaihda kursiivi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Vaihda järjestettyä luetteloa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Vaihda yliviivausta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Vaihda alleviivaus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Vaihda järjestämätön lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Työkaluvinkki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Seuraa tehtäviä tarkistuslistan avulla." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Muunna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Muunna kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Muunna kuva (nollaa muunnos napsauttamalla kahdesti)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Käännä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Läpinäkyvät värit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Kokeile etsiä muilla avainsanoilla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tyyppi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Kirjoita \"/\" komentoja varten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "Url tai sähköposti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Poista kohdistus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Odottamaton" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Lataa asiakirja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Lataa kuva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Ladatun kuvan muotoa ei tueta. Kokeile:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Ladatun kuvan muotoa ei tueta. Kokeile: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Videon muotoilu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Videon koodi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videot mykistetään, kun automaattinen toisto on käytössä" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Näytä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Näkymät ja Assets-niput" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Varoitus: Kun suljet tämän ikkunan, versio, jota työstit, hylätään, eikä se " +"ole enää käytettävissä." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Aaltoileva" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editor Converter -alatesti" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor Converter testi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Vimpaimet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Leveys" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Kirjoita viesti tähän..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Kyllä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Voit ladata asiakirjoja näytön vasemmassa yläkulmassa olevasta painikkeesta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Voit ladata kuvia näytön vasemmassa yläkulmassa olevasta painikkeesta." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Sinun on määritettävä joko data tai url luodaksesi liitetiedoston." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL-osoitteesi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Lähennä" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Loitonna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "lisää" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "ja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automaattinen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "tummenna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "oletus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "poissulkeminen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "vaalenna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "kerro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "päällekkäinen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "näyttö" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videot" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket-viestien käsittely" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.esimerkki.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr.po new file mode 100644 index 0000000..1c378b0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr.po @@ -0,0 +1,3465 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Cécile Collart , 2022 +# Martin Trigaux, 2023 +# Jolien De Paepe, 2023 +# Manon Rondou, 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Suggéré)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' spécifie un texte alternatif pour une image, si l'image ne peut " +"pas être affichée (connexion lente, image manquante, lecteur d'écran ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Étiquette de titre' s'affiche sous forme d'infobulle lorsque vous survolez " +"l'image." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(Etiquette TITRE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ou code incorporé)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 colonnes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 étoiles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 colonnes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 colonnes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 étoiles" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blocs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Personnaliser" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Une erreur de serveur est survenue. Veuillez vérifier que vous êtes bien " +"connecté et que le fichier que vous sauvegardez est correctement formaté. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Au-dessus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Accepte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Ajouter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Ajouter une colonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Ajouter une rangée" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Ajouter une URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Ajouter une section de citations." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Ajouter un bouton." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Ajouter une section de code." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Ajouter une colonne à gauche" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Ajouter une colonne à droite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Ajouter un lien." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Ajouter une ligne au-dessus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Ajouter une ligne en-dessous" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alerte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Aligner au centre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Aligner à gauche" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Aligner à droite" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alignement" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tous" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Tous les fichiers SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Tous les documents ont été chargés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Toutes les images ont été chargées" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Angle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonyme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Appliquer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Êtes-vous sûr de vouloir supprimer le snippet : %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Ratio d'aspect" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Pièce jointe" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL de la pièce jointe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Conversion automatique en lien relatif" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Lecture automatique" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Retour à une colonne." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Arrière-plan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Couleur de fond" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Position arrière-plan" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Blocs de base" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Les bases" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "En-dessous" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Grand titre de section." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloc" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocks & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Blur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Gras" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Bordure" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Couleur de la bordure" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Style de bordure" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Largeur de la bordure" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Luminosité" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Liste à puces" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Bouton" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Attention !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centrer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Modifier la description média et l'infobulle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Check-list" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Choisir un enregistrement..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Fermer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Couleur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtre couleur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Couleurs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Colonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Couleurs communes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflit de contenu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contraste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Convertir en 2 colonnes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Convertir en 3 colonnes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Convertir en 4 colonnes." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copier le lien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copiez-collez votre URL ou votre code incorporé ici" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Impossible d'installer le module %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Impossible de charger le fichier \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Couverture" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Créer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Créez une liste avec numérotation." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Créez une simple liste à puces." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Créez une URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Rogner l'Image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personnalisé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Personnalisé %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Pointillé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Défaut" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Défaut + Arrondi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Définir un dégradé personnalisé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Supprimer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Supprimer %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Supprimer le tableau actuel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Description" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Périphériques" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Ignorer" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Ignorer l'enregistrement" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Voulez-vous installer l'application %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documents" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Pointillé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Double" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Double-cliquer pour modifier " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Glissez-déposez le bloc de construction." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Dupliquer le conteneur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Couleurs dynamiques" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Placeholder dynamique" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"ERREUR : impossible d'obtenir les URL de téléchargement de la bibliothèque " +"multimédia." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Modifier le lien" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Modifier l'image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Modifier la description du média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Il n'est pas conseillé de modifier un fichier intégré via cet éditeur, car " +"cela empêchera sa mise à jour lors des futures mises à niveau de " +"l'application." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Intégrer l'image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Intégrer une vidéo Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Intégrer l'image dans le document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Intégrer la vidéo Youtube dans le document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Citation vide" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Attendu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Étendre jusqu'au coin le plus proche" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Étendre jusqu'au côté le plus proche" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Étendre jusqu'au coin le plus éloigné" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Étendre jusqu'au côté le plus éloigné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Le fichier a été téléchargé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Remplir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Remplir + Arrondi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Couleur de remplissage" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtrer" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Premier panneau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Plat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexible" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Pivoter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Pivoter horizontalement" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Pivoter verticalement" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Formes flottantes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Nombres flottants" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Couleur de la police" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Taille des caractères" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Pour des raisons techniques, ce bloc ne peut pas être déposé ici" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Plein écran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Obtenez l'image parfaite en recherchant dans notre bibliothèque de photos et" +" illustrations libres de droits." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Dégradé" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Routage HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "En-tête 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "En-tête 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "En-tête 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "En-tête 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "En-tête 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "En-tête 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Titre 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Titre 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Titre 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Titre 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Titre 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Titre 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Hauteur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Masquer le logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Masquer le bouton plein écran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Masquer les commandes du lecteur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Masquer le bouton de partage" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icône" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formatage des icônes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Taille de l'icône 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Taille de l'icône 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Taille de l'icône 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Taille de l'icône 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Taille de l'icône 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Icônes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Si vous ignorez vos changements, tous les changements non sauvés seront " +"perdus. Vous pouvez annuler et retourner en mode édition." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Si vous réinitialisez ce fichier, toutes vos personnalisations seront " +"perdues, car vous retrouverez le fichier par défaut." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustrations" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatage de l'image" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Hauteur de l'image" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Image Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Largeur de l'image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Padding de l'image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Images" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Texte inline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Insérer une note sur 3 étoiles." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Insérer une note sur 5 étoiles." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Insérer un tableau." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Insérez une vidéo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Insérer au-dessus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Insérer une ligne horizontale de séparation." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Insérer une image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Insérer en-dessous" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Insérer à gauche" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Insérer un média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Insérer ou modifier un lien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Insérer votre contenu personnalisé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Insérer à droite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Insérer un tableau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Insérez votre signature." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Installer %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installation en cours" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valeur de champ invalide pour %s : %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Éléments invisibles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Article" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Fichier JS : %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Grand" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Gauche" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linéaire" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Lignes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Lien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Libellé du lien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Lien copié dans votre presse-papiers." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Lien vers" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Liste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Charger plus..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Boucle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Couleur principale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Outils Marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Moyen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Moyen titre de section." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Plus d'informations à propos de cette application." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Déplacer vers le bas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Déplacer à gauche" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Déplacer à droite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Déplacer vers le haut" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Mes images" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Non" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Aucune URL spécifiée" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Aucun document trouvé." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Aucune image trouvée." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Aucun endroit où déposer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Plus d'enregistrements" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Aucun pictogramme trouvé." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Aucun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Liste numérotée" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Essais d'Odoo Editor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Seuls les fichiers SCSS personnalisés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Uniquement les fichiers SCSS de page" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Vues uniquement" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Ouvrir dans un nouvel onglet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Ouvrir dans une nouvelle fenêtre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimisé" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Pièce jointe originale (non optimisée, non redimensionnée) " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Origines" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contour" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Contour + Arrondi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Options de la page" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bloc de paragraphe." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Coller en tant qu'URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Motifs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Position" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Aperçu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primaire" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Qualité" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Champ Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Champ Qweb de Contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Champ Qweb de date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Champ Qweb de datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Champ Qweb de durée" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Champ Qweb nombre flottant" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Champ Qweb HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Champ Qweb image" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Champ Qweb entier" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Champ Qweb Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Champ Qweb monétaire " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Champ Qweb relatif" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Champ Qweb de sélection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Champ Qweb de texte" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Champ Qweb qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Champ en lecture seule" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Redirigez l'utilisateur ailleurs lorsqu'il clique sur le média." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Supprimer (EFFACER)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Supprimer le bloc" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Supprimer l'actuel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Supprimer le lien" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Supprimer la couleur sélectionnée" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Supprimer les colonnes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Supprimer la colonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Supprimer la ligne actuelle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Supprimer le format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Supprimer le lien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Renommer %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Mosaïque" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Remplacer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Remplacer le média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Réinitialiser" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Réinitialiser l'image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Réinitialiser la taille" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Réinitialiser le recadrage" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Réinitialiser la transformation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "La réinitialisation des vues n'est pas encore possible" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Redimensionnement par défaut" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Redimensionner complètement" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Redimensionner à moitié" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Redimensionner à 25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Droit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Tourner sur la gauche" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Tourner vers la droite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Rangée" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Fichier SCSS : %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Enregistrer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Enregistrer et installer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Enregistrer et recharger" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Enregistrer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Rechercher un document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Rechercher un pictogramme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Chercher une image" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Rechercher un bloc (par exemple, des chiffres, un mur d'images, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Rechercher des enregistrements..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Recherche avancée..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Rechercher pour afficher plus d'enregistrements" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secondaire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Sélectionnez un bloc sur votre page pour le styliser." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Sélectionner un média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Séparateur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Erreur de serveur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Ombre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forme : Cercle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forme : Arrondie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forme : Vignette" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Montrer les images optimisées" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signature" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Taille" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Taille 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Taille 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Taille 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Taille 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Taille 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Petit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Petit titre de section." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solide" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solides" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Une personne ayant des droits élevés a préalablement modifié cette zone, " +"vous ne pouvez donc pas la modifier vous-même." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Spéciaux" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Structure" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Style" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Suggestions" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Changer de direction" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Changez la direction du texte." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tableau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Options du tableau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Outils du tableau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID du modèle : %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Texte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Couleur de texte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Alignement du texte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Style du texte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "L'URL ne semble pas fonctionner." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "L'URL semble valide." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "La valeur datetime %s ne correspond pas au format %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Le document a déjà été enregistré par quelqu'un ayant un historique " +"différent pour le modèle %r, le champ %r avec l'identifiant %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "L'URL fournie ne renvoie à aucune vidéo compatible" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "L'URL fournie n'est pas valide" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "L'URL fournie n'est pas valide" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"La version de la base de données sera utilisée.\n" +"Si vous devez conserver vos modifications, copiez le contenu ci-dessous et modifiez le nouveau document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Thème" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Couleurs du thème" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Il y a un conflit entre votre version et celle de la base de données." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Cette URL n'est pas valide. L'aperçu n'a pas pu être mis à jour." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Ce bloc est obsolète" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Ce document n'est pas enregistré !" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Ce fichier est une pièce jointe publique." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Ce fichier est joint à l'enregistrement en cours." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Cette image est une image externe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Ce type d'image n'est pas pris en charge pour le recadrage.
Si vous " +"souhaitez le recadrer, veuillez d'abord le télécharger à partir de la source" +" d'origine et le télécharger dans Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Étiquette de titre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Pour apporter des modifications, supprimez ce bloc et utilisez les nouvelles" +" options de la dernière version." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Pour sauver votre élément, nous devons enregistrer tous vos changements " +"précédents et recharger la page." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "À faire" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Mettre en gras" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Basculer en check-list" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Faire pivoter l'icône" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Mettre en italique" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Ajouter des puces" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Barrer le texte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Souligner le texte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Enlever les puces" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Infobulle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Suivre les tâches grâce à une check-list." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformer" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformer l'image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transformer l'image (cliquer deux fois pour réinitialiser la transformation)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traduire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Couleurs transparentes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Essayez de chercher avec d'autres mots-clés. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Type" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Tapez \"/\" pour les commandes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL ou e-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Désaligner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Inattendu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Télécharger un document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Télécharger une image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" +"Le format de l'image téléchargée n'est pas pris en charge. Essayez avec :" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" +"Le format de l'image téléchargée n'est pas pris en charge. Essayez avec :%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Vidéo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatage vidéo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Code de la vidéo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Vidéos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"Le son des vidéos est coupé lorsque la lecture automatique est activée" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vue" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Vues et ensembles de ressources" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Attention : après la fermeture de cette boîte de dialogue, la version sur " +"laquelle vous travailliez sera supprimée et ne sera plus disponible." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Wavy" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Sous-test du convertisseur de l'éditeur Web" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Test du convertisseur de l'éditeur web" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Largeur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Ecrivez quelque chose ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Oui" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Vous pouvez télécharger des documents avec le bouton situé en haut à gauche " +"de l'écran." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Vous pouvez télécharger des images avec le bouton situé en haut à gauche de " +"l'écran." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" +"Vous devez préciser des données ou une URL pour créer une pièce jointe." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Votre URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Agrandir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Réduire" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "ajouter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "et" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "assombrir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "défaut" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusion" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "éclaircir" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplier" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "superposer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "écran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "vidéos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "traitement des messages du websocket " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr_CA.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr_CA.po new file mode 100644 index 0000000..b597861 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/fr_CA.po @@ -0,0 +1,1511 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-10-09 05:53+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Action" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Ajouter" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Fermer" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Code" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Standard" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Modifier" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "Identifiant" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Réinitialiser" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Recherche" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Téléversement en cours..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Avertissement" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "inconnu" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "or" +#~ msgstr "ou" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gl.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gl.po new file mode 100644 index 0000000..06ceb21 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gl.po @@ -0,0 +1,1510 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-30 09:29+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Acción" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Engadir" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Pechar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Creado o" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Default" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Documento" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Axuda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Imaxe" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Información" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ningún" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Previsualización" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Eliminar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Gardar" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Búsqueda" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Tamaño" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Subindo ..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "descoñecido" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "" + +#~ msgid "or" +#~ msgstr "ou" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gu.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gu.po new file mode 100644 index 0000000..b91bf92 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/gu.po @@ -0,0 +1,3393 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Qaidjohar Barbhaya, 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Add" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "All" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Apply" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Close" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Create" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Created on" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Description" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Discard" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Lines" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Name" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "No" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "None" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Preview" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Save" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Type" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "View" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "હા" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/he.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/he.po new file mode 100644 index 0000000..5365c30 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/he.po @@ -0,0 +1,3443 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Roy Sayag, 2022 +# ExcaliberX , 2022 +# Ofir Blum , 2022 +# Hed Shefer , 2022 +# Netta Waizer, 2022 +# Lilach Gilliam , 2022 +# NoaFarkash, 2022 +# Martin Trigaux, 2023 +# MichaelHadar, 2023 +# yael terner, 2024 +# Yihya Hugirat , 2025 +# Ha Ketem , 2025 +# ZVI BLONDER , 2025 +# or balmas, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: or balmas, 2025\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (מקור)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (מוצע)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'תגית כותרת' מופיעה כחלונית כשמרחפים מעל התמונה עם העכבר." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(תווית חלופית)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(תווית כותרת)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(קישור URL או מוטמע)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 עמודות" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 עמודות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 עמודות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"אירעה שגיאת שרת. אנא בדוק שהתחברת כראוי וכי הקובץ שאתה שומר מעוצב כהלכה." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "מעל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "מתקבל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "הוסף" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "הוסף עמודה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "הוסף שורה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "הוסף כתובת אתר אינטרנט" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "הוסף קטע ציטוט." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "הוספת כפתור." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "הוסף עמודה לשמאל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "הוסף עמודה לימין" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "הוסף קישור." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "הוסף שורה מעל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "הוסף שורה מתחת" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "עדן" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "ארי וזקס" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "אזהרה" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "יישור למרכז" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "יישור לשמאל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "יישור לימין" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "יישור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "הכל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "קבצי All SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "כל התמונות נטענו" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "תווית חלופית" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "זווית" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "מונפש" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "אנונימי" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "החל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "בטוח שברצונך למחור את הקטע: %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "האם אתה בטוח שברצונך למחוק קובץ זה?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "יחס גובה-רוחב" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "נכסים שימושיים" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "קובץ מצורף" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL כתובת הקובץ להעלאה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "ניגון אוטומטי" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "רקע" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "צבע רקע" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "מיקום רקע" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "בסיס" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "בסיסי" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "למטה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "כותרת בגודל גדול" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "חסום" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "טשטוש" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "מודגש" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "גבול" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "צבע גבול" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "סגנון גבול" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "רוחב גבול" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "בהירות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "רשימת תבליטים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "כפתור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "בטל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "זהירות !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "מרכז" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "רשימת תיוג" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "בחירת רשומה..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "סגור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "קוד" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "צבע" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "מסנן צבע" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "צבעים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "עמודה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "צבעים נפוצים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "אשר" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "אישור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "ניגודיות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "העתק קישור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "כאן עושים העתקה-הדבקה של קישור URL או של קוד הטמעה " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "לא הצלחנו להתקין את המודול %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "שער" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "צור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "יצירת רשימה ממוספרת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "יצירת רשימת תבליטים פשוטה." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "יצירת קישור" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "נוצר על-ידי" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "חתוך תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "מותאם" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "%s מותאת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "מקווקו" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "ברירת מחדל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "ברירת מחדל + מעוגל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "מחק" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "מחיקת %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "מחיקת טבלא נוכחית" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "תיאור" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "מכשירים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "בטל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "ביטול הרשומה" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "שם לתצוגה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "להתקין את היישום %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "מסמכים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "מנוקד" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "כפול" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "לחץ פעמיים כדי לערוך" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "שכפול בלוק" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "צבעים דינמיים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "עריכת קישור" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "עריכת תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "עריכת תיאור מדיה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "הטמעת תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "הטמעת וידאו מיוטיוב" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "הטמעת הדימוי במסמך." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "הטמעת הוידאו מיוטיוב במסמך." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "צפוי" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "הקובץ הועלה." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "למלא" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "מלא ומעוגל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "צבע מילוי" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "מסנן" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "שטוח" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "גמישה" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "היפוך אופקי" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "היפוך אנכי" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "צורות מרחפות" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "מרחפת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "צבע גופן" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "גודל גופן(פונט)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "תבנית" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "מסך מלא" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"קבל את התמונה המושלמת על ידי חיפוש בספרייה שלנו של תמונות ואיורים ללא זכויות" +" יוצרים." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "ניתוב HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "כותרת עליונה 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "כותרת עליונה 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "כותרת עליונה 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "כותרת עליונה 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "כותרת עליונה 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "כותרת עליונה 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "כותרת בגודל גדול" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "כותרת בגודל בינוני" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "כותרת בגודל קטן" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "גובה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "הסתר את כפתור השיתוף" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "מזהה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "סמל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "סמלילים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"אם תבטל את העריכות הנוכחיות, כל השינויים שלא נשמרו יאבדו. אתה יכול לבטל כדי " +"לחזור למצב עריכה." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"אם תאפס קובץ זה, כל ההתאמות האישיות שלך יאבדו מכיוון שהוא יוחזר לקובץ ברירת " +"המחדל." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "איורים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "גובה תמונה" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "מקור תמונה" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "רוחב תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "תמונות" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "הכנס לטבלה." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "הכנס סרטון" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "הכנס מעל " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "הכנס קו מפריד אופקי." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "הכנס תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "הכנס מתחת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "הכנס משמאל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "הוספת מדיה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "הוספה או עריכת קישור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "הכנס מימין " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "הכנס טבלה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "הכנס את החתימה שלך." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "להתקין" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "התקנת %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "פריט" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "גדול" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "שינוי אחרון ב" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על-ידי" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "שמאל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "ליניארי" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "שורות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "קישור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "קשר תווית" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "לינק הועתק ללוח" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "קישור אל" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "רשימה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "טען עוד..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "לולאה" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "מדיה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "אמצעי תקשורת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "כותרת בגודל בינוני" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "הזזה שמאלה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "הזזה ימינה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "הדימויים שלי" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "שם" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "ניווט" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "לא" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "לא נמצאו מסמכים." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "לא נמצאו תמונות." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "אף אחד" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "נורמלי " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "רשימה ממוספרת" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "פתיחה בלשונית חדשה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "פתיחה בחלון חדש" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "קווי מתאר" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "מרווח" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "בלוק פסקה." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "תבניות" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "מעמד" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "תצוגה מקדימה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "ראשי" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "איכות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "ציטוט" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "איש קשר בשדה Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "הסרת בלוק" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "הסרת קישור" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "הסרת קישור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "החלף" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "אפס" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "אפס תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "עדיין לא תומך באיפוס תצוגות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "שינוי גודל מלא" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "ימין" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "סובב שמאלה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "סובב ימינה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "שורה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "שמור" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "שמירה והתקנה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "שמור והעלה מחדש" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "שמירת רשומה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "חפש מסמך" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "חפש תמונה" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "חפש רשומות..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "חפש עוד..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "חפש כדי להראות עוד רשומות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "משני" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "מפריד" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "שגיאת שרת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "צללית" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "צורה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "חתימה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "גודל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "קטן" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "כותרת בגודל קטן" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "מוצק" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "מבנה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "סגנון" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "הצעות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "החלפת כיוון" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "החלף את כיוון הטקסט." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "שולחן" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "טקסט" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "צבע טקסט" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "ערכת נושא" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "המסמך לא נשמר!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "המסמך לא נשמר!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "תואר" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "תווית כותרת" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "מטלה" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "הסבר" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "עקוב אחר משימות בעזרת צ'ק ליסט." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "שנה את התמונה (לחץ פעמיים כדי לאפס את השינוי)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "תרגם" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "סוג" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "הקלד \"/\" לשימוש בפקודות" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "כתובת אתר או דוא\"ל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "העלה מסמך" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "העלאת תמונה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "וידאו" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "סרטונים" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "תצוגה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"אזהרה: לאחר סגירת דו-שיח זה, הגרסה שעבדת עליה תימחק ולעולם לא תהיה זמינה " +"יותר." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "גלי" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "רוחב" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "כתוב משהו..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "כן" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"ניתן להעלות תמונות באמצעות הכפתור הממוקם בפינה השמאלית העליונה של המסך." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "הקישור שלך" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "זום פנימה" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "להקטין את התצוגה (זום אאוט)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "הוסף" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "וגם" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "ברירת מחדל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "פיקסל" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "מסך" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "וידאות" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hi.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hi.po new file mode 100644 index 0000000..deb404f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hi.po @@ -0,0 +1,3424 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2023 +# Wil Odoo, 2024 +# Ronald Kung, 2025 +# Manav Shah, 2025 +# Ujjawal Pathak, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Ujjawal Pathak, 2025\n" +"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "जोड़ना" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "सभी " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "अप्लाई करें" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "अटैचमेंट" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "बेस" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "रद्द" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "बंद" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "कोड" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "कलर" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "पुष्टि करें" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "बनाएँ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "द्वारा निर्मित" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "इस तारीख को बनाया गया" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "डिफ़ॉल्ट" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "हटाएं" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "विवरण" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "खारिज करें" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "डिस्प्ले नाम" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "आईडी" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "आइकॉन" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "इन्होंने आखिरी बार अपडेट किया" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "आखिरी बार अपडेट हुआ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "छोड़ दिया" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "लीनियर" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "लाइऩें" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "सूची" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "ज़्यादा लोड करें..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "नाम" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "नही" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "कोई नहीं" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "पोज़िशन" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "प्रीव्यू" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "रीसेट करें" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "सही" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "सहेज" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "हस्ताक्षर" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "प्रकार" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "देखें" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "हाँ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hr.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hr.po new file mode 100644 index 0000000..e282e57 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hr.po @@ -0,0 +1,3440 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# 0ba0ac30481a756f36528ba6f9a4317e_6443a87 <52eefe24349934c364624ef40611b7a3_1010754>, 2022 +# Mario Jureša , 2022 +# Vojislav Opačić , 2022 +# Marko Carević , 2022 +# hrvoje sić , 2022 +# Ivica Dimjašević , 2022 +# Igor Krizanovic , 2022 +# Đurđica Žarković , 2022 +# Vladimir Olujić , 2022 +# Tina Milas, 2022 +# Martin Trigaux, 2023 +# Matija Gudlin, 2024 +# Servisi RAM d.o.o. , 2024 +# Davor Bojkić , 2025 +# Bole , 2025 +# Karolina Tonković , 2025 +# Zvonimir Galic, 2025 +# Anes Sabic, 2025 +# Luka Carević , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Luka Carević , 2025\n" +"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ili ugrađivanje)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 zvijezdice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 zvijezdica" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Prihvaća" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Dodaj Red" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Dodaj URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alarm" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Sve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anoniman" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Primijeni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Prilog" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL priloga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autopokretanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Pozadina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Boja pozadine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Osnovica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokiraj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Podebljano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Popis s točkama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Gumb" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Odustani" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Popis stavki za označavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Šifra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Boja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Uobičajene boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Potvrda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopiraj link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopiraj i zalijepi URL ili ugradbeni kod ovdje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Naslovna slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Kreiraj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Prilagođen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Zadano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Obriši" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Uređaji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Odbaci" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Kliknite dva puta za uređivanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Dupliciraj sadržaj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Ravan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Fleksibilno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Boja fonta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Puni zaslon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmjeravanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Header 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Header 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Header 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Header 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Header 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Visina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustracije" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Visina slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Izvor slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Širina slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Unesite ocjenu veću od 3 zvjezdice." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Unesite ocjenu veću od 5 zvjezdica." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Dodaj iznad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Dodaj ispod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Umetni lijevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Umetni desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instaliraj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Veliko" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Lijevo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linearno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Stavke" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Veza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Labela retka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Poveznica na" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Datoteka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Pomakni dolje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Pomakni lijevo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Pomakni desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Moje slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Naziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nema pronađenih dokumenata." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nema pronađenih slika." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nema pronađenih piktograma." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ništa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normalan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Popis s brojevima" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Otvori u novom prozoru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Dopunjavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pozicija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Pregled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primarno" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvaliteta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb decimalno polje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb polje slika" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Polje samo za čitanje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Ukloni blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Zamijeni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Poništi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Poništi veličinu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Resetiranje pogleda nije još podržano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Spremi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Pretraži dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Pronađite piktogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Pronađite sliku" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Traži više..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Odaberi blok na stranici koji želite urediti." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Odaberi datoteku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Greška poslužitelja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Sjena" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Oblik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Prikaži optimizirane slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Potpis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Veličina" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Malo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Prijedlozi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Table" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID predloška: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Boja teksta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Boje teme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dokument nije spremljen!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Naslov" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Za napraviti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Uključi podebljano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Prebaci kurziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Uključi precrtano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Uključi podcrtavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Prevoditi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Pokušajte pretraživati s drugom ključnom riječi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Vrsta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Unesite \"/\" za naredbe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Učitajte dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Učitaj sliku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Kod videa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Pogledaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Širina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Napišite nešto..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Da" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Dokumente možete prenijeti pomoću gumba koji se nalazi u gornjem lijevom " +"kutu zaslona." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "i" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videe" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "upravljanje porukama websocketa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hu.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hu.po new file mode 100644 index 0000000..688a1ea --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hu.po @@ -0,0 +1,3458 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Gergő Kertész , 2022 +# Krisztián Juhász , 2022 +# gezza , 2022 +# Csaba Tóth , 2022 +# Istvan , 2022 +# Tamás Németh , 2022 +# Bognár István , 2023 +# Tamás Dombos, 2024 +# krnkris, 2025 +# Martin Trigaux, 2025 +# Ákos Nagy , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Ákos Nagy , 2025\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Eredeti)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Javasolt)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"Az 'Alt tag' egy szöveg, amely a kép helyébe lép, ha azt nem lehet " +"megjeleníteni (lassú internetkapcsolat, hiányzó kép, képernyőolvasó ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"A 'Title tag' helyi súgóként jelenik meg, ha a kép fölé megyünk egérrel. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL vagy Beágyazás)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 oszlop" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 csillag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blokkok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Testreszabás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Szerverhiba történt. Ellenőrizzük, hogy be vagyunk-e jelentkezve és a " +"mentendő fájl megfelelő formátumú." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Felülre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Ezeket a formátumokat kezeli: " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Hozzáadás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Oszlop hozzáadása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Sor hozzáadása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Webcím beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Idézetblokk beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Gomb beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Kód beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Oszlop hozzáadása balra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Oszlop hozzáadása jobbra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Egy hivatkozás hozzáadása." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Sor hozzáadása felülre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Sor hozzáadása alulra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Figyelmeztetés" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Középre rendez" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Balra rendez" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Jobbra rendez" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Igazítás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Összes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Összes SCSS fájl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Összes dokumentum betöltve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Összes kép betöltve" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt elem" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Szög" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animált" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Névtelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Alkalmazás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Biztos, hogy törölni szeretné a(z) %s építőkockát?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Biztos, hogy törölni szeretné ezt a fájlt?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Képarány" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Eszközök segédprogram" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Melléklet" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Melléklet webcíme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automatikus konvertálás relatív hivatkozássá" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automatikus lejátszás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Vissza egy oszlopra." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Háttér" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Háttér szín" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Háttér pozíció" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Alap" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Alap blokkok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Alapok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Alulra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Nagy címsor beszúrása" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Foltok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokkolás" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Életlenítés" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Félkövér" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Szegély" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Szegély színe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Szegély stílusa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Szegély szélessége" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Fényerő" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Listajeles felsorolás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Gomb" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Mégse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Óvatosan!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Közép" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Média leírásának és súgójának módosítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Ellenőrzőlista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Rekord választása..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Bezárás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kód" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Szín" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Szín szűrő" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Színek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Oszlop" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Bevett színek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Megerősítés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Megerősítés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Tartalom konfliktus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontraszt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Hivatkozás másolása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Másolja és szúrja be az URL-t vagy a kódot ide" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr " %s modul nem telepíthető" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Borító" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Létrehozás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Számozott lista beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Listajeles lista beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "URL beszúrása" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Kép vágása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Egyéni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Egyedi %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Szaggatott" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Alapértelmezett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Alapértelmezett + Lekerekített" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Egyedi színátmenet definiálása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Törlés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "%s törlése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Jelenlegi táblázat törlése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Leírás" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Eszközök" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Elvetés" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Rekord elvetése" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Megjelenített név" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Biztos, hogy installálja a(z) %s alkalmazást?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumentumok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Pontozott" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dupla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Kattintson kétszer a szerkesztéshez" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Húzd az építőelemet a kívánt helyre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Konténer duplikálása" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dinamikus színek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "HIBA: letötlési URL nem lekérhető a média könyvtárból" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Hivatkozás szerkesztése" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Kép szerkesztése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Média leírás szerkesztése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Egy beépített fájl szerkesztsése ezen szerkesztő segítségével nem javasolt, " +"mivel így nem frissül az alkalmazás egy későbbi frissítése során." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Kép beágyazása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Youtube videó beágyazása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Kép beágyazása a dokumentumba." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Youtube videó beágyazása a dokumentumba." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Méret növelése a legközelebbi sarokig" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Méret növelése a legközelebbi oldalig" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Méret növelése a legtávolabbi sarokig" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Méret növelése a legtávolabbi oldalig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "A fájl feltöltve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Kitöltés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Kitöltés + Lekerekített" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Szűrő" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Első panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Átalány áras" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Rugalmas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Vízszintes tükrözés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Függőleges tükrözés" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Lebegő alakzatok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Lebegők" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Betűszín" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Betűméret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Technikai okok miatt ezt a blokkot nem lehet itt elhelyezni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formátum" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Teljes képernyő" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"A tökéletes kép megtalálásához keressen ingyenes fotókat és illusztrációkat " +"tartalmazó könyvtárunkban." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Színátmenet" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP irányítás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Fejléc 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Fejléc 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Fejléc 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Fejléc 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Fejléc 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Fejléc 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Címsor 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Címsor 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Címsor 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Magasság" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotion logó elrejtése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Teljes képernyő gomb elrejtése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Lejátszógombok elrejtése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Megosztás gomb elrejtése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "Azonosító" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Ikon formázása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "1x ikon méret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "2x ikon méret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "3x ikon méret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "4x ikon méret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "5x ikon méret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Ha elveti a jelenlegi módosításokat, az összes el nem mentett változás " +"elveszik. Az elvetés gombra kattintva visszatérhet a szerkesztéshez." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Ha visszaállítja ezt a fájl, az összes egyedi beállítás elveszik, és a fájl " +"visszaáll az alapértelmezett állapotba." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illusztrációk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Kép" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Kép formázása" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Kép magassága" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Kép forrása" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Kép szélessége" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Képmargó" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Képek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Szöveg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Táblázat beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Videó beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Vízszintes beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Kép beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Média beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Hivatkozás beszúrása vagy szerkesztése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Táblázat beszúrása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Telepítés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "%s telepítése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Telepítés folyamatban" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Érvénytelen érték ehhez %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Láthatatlan elemek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Elem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS fájl: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Nagy" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Legutóbb frissítve" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Frissítve ekkor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Bal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineáris" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Tételek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Hivatkozás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Címke hozzárendelés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "A hivatkozás a vágólapra másolva." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Hivatkozás erre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Továbbiak betöltése..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Fő szín" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Közepes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Közepes szakasz címsor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "További információ erről az alkalmazásról." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Saját képeim" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Név" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigáció" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Nincs megadva URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nem található dokumentum." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nem található kép." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Nincs hely megadva ahova el kellene helyezni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Nincs több rekord" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nincs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normál" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Számozott lista" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Csak egyedi SCSS fájlok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Csak az oldlhoz tartozó SCSS fájlok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Csak nézetek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Megnyitás új lapon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Megnyitás új ablakban" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimalizált" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Eredeti (nem átméretezett, nem optimalizált) mellékletek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Eredetik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Körvonal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Körvonal + Lekerekített" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Szerkesztés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bekezdés blokk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Beillesztés URL-ként" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Mintázatok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Elhelyezkedés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Előnézet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Elsődleges" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Minőség" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Idézet" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb mező" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb mező kapcsolat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb mező dátum" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb mező dátum és idő" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb mező időtartam" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb mező lebegőpontos szám" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb mező HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb mező kép" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb mező egész szám" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb mező many2one " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb mező pénzügyi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb mező relatív" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb mező választás" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb mező szöveg" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb mező qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Körkörös" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Csak olvasható mező" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "A felhasználó továbbítása máshova, ha a médiára kattint" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Eltávolítás (TÖRLÉS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Blokk eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Jelenlegi eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Hivatkozás eltávolítása" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Kiválasztott szín eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Jelenlegi oszlop eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Jelenlegi sor eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Formázás eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Hivatkozás eltávolítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "%s átnevezése" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Mintázat ismétlése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Kicserél" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Média cseréje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Visszaállítás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Kép visszaállítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Képvágás visszaállítása" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Átalakítások visszaállítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "A nézetek visszaállítása még nem támogatott" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Teljes átméretezés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Átméretezés félre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Átméretezés negyedre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Jobb" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Forgatás balra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr " Forgatás jobbra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Sor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS fájl: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Telítettség" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Mentés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Mentés és telepítés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Mentés és újratöltés" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Rekord mentése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Dokumentum keresése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Piktogramm keresése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Kép keresése" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Rekordok keresése..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "További keresés..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "További rekordokért keresés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Másodlagos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Válasszon ki egy blokkot az oldalon a stílus beállításához." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Elválasztó" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Szerverhiba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Árnyék" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Alakzat: kör" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Alakzat: lekerekített" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Alakzat: bélyegkép" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Optimalizált képek mutatása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Aláírás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Méret" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "1x méret" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "2x méret" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "3x méret" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "4x méret" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "5x méret" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Kicsi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Kis szakasz címsor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Szolíd" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Különleges" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Szerkezet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stílus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Javaslatok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Irány módosítása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Szöveg irányának módosítása." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Táblázat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Táblázat opciók" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Táblázat eszközök" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Sablon ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Szöveg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Szöveg igazítás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Szöveg stílus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Az URL nem műküdik." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "Az URL valósnak tűnik." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "A megadott URL nem egy támogatott videóra mutat" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "A megadott URL nem érvényes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Az adatbázisban szereplő verzió lesz használva.\n" +"Ha meg akarja tartani a változtatásokat, másolja le a lenti tartalmat, és szerkessze az új dokumentumot." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Téma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Téma színei" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Konfliktus van ezen és az adatbázisban szereplő változat között." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Ez az URL érvénytelen. Az előnézetet nem lehet frissíteni." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Ez a blokk elavult" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Ez a dokumentum nincs mentve!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Ez a fájl egy nyilvános melléklet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Ez a fájé a jelenlegi rekordhoz kapcsolódik." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Ez egy külső kép" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Az ilyen típusú képek vágása nem támogatott.
Ha meg szeretné vágni ezt a" +" képet, töltse le az eredeti forrásból, majd a vágás után töltse fel újra az" +" Odooba." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Név" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Title elem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"A változtatásokhoz vesse el ezt a blokkot, és használja a legutóbbi " +"verziónál szereplő új opciókat." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Ennek az építőkockának mentéséhez el kell mentenünk az összes eddigi " +"módosítást, és újratölteni az oldalt. " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Félkövér" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Ellenőrzőlista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Ikon forgatás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Dőlt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Számozott lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Áthúzás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Aláhúzás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Listajeles felsorolás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Helyi súgó" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Feladatok követése ellenőrzőlistával" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Alakítás" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Kép alakítás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Átalakítsa a képet (kattintson kétszer a transzformáció visszaállításához)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Fordítás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Átlátszó színek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Típus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "\"/\" gépelése parancshoz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL vagy email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Igazítás kikacsolása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Váratlan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Dokumentum feltöltése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Kép feltöltése" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "A feltöltött kép formátuma nem támogatott. Próbálja meg ezzel: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Videó" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Videó formázása" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Videó kódja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videók" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"A videók hangja ki van kapcsolva, ha az automatikus lejátszás be van " +"kapcsolva" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Megtekintés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Figyelmeztetés: a párbeszédablak bezárása után az a változat, amelyen " +"jelenleg dolgozik elvetésre kerül, és nem lesz többé elérhező" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Szélesség" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Írjon valamit..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Igen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Dokumentumokat a képernyő bal felső sarkában található gombbal tölthet fel." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "Képeket a képernyő bal felső sarkában található gombbal tölthet fel." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "A melléklet létrehozásához meg kell adni adatot vagy URL-t." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Nagyít" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Kicsinyít" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "hozzáadás" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "és" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automatikus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "sötétítés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "alapértelmezett" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "kivétel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "világosítás" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "szendvicspozitív " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "átfedés" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "képernyő" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videó" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hy.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hy.po new file mode 100644 index 0000000..303bc4f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/hy.po @@ -0,0 +1,3388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/id.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/id.po new file mode 100644 index 0000000..3966261 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/id.po @@ -0,0 +1,3455 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Wahyu Setiawan , 2022 +# Ryanto The , 2022 +# Martin Trigaux, 2023 +# Abe Manyo, 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Suggested)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' menentukan teks alternatif untuk gambar, bila gambar tidak dapat " +"ditampilkan (koneksi lambat, gambar hilang, screen reader ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Title tag' ditunjukkan sebagai tooltip saat Anda menaruh mouse di atas " +"gambar." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL or Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolom" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Stars" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Stars" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Kustomisasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Terjadi error server. Silakan periksa apakah Anda sign in dengan benar dan " +"file yang Anda simpan diformat dengan benar." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Diatas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Menerima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Tambah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Tambahkan Kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Tambahkan Baris" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Tambahkan URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Tambahkan bagian blockquote." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Tambahkan tombol." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Tambahkan bagian kode." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Tambahkan kolom kiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Tambahkan kolom kanan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Tambahkan link." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Tambahkan baris diata" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Tambahkan baris dibawah" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Peringatan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Rata Tengah" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Rata Kiri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Rata Kanan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alignment" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Semua" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Semua File SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Semua dokumen sudah diload" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Semua gambar sudah diload" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Sudut" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Dianimasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonymous" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Terapkan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Apakah Anda yakin ingin menghapus snippet: %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Apakah Anda yakin ingin menghapus file ini ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Aspect ratio" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Lampiran" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL Lampiran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Autoconvert ke relative link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autoplay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Kembali ke satu kolom." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Latar Belakang" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Warna Latar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Posisi Latar Belakang" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Blok Dasar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Basic" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Di bawah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Heading seksi yang besar." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokir" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocks & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Blur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Bold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Border" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Warna Border" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Border Style" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Lebar Border" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Brightness" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Daftar Berpoin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Tombol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Batal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Hati - hati !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Tengah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Ganti keterangan dan tooltip media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checklist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Pilih record..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Tutup" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Warna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filter warna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Warna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Warna kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Konfirmasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Konfirmasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Konflik konten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontras" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Konversikan menjadi 2 kolom." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Konversikan menjadi 3 kolom." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Konversikan menjadi 4 kolom." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Salin Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Salin-Tempel URL Anda atau embed kode di sini" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Tidak dapat menginstal modul %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Tidak dapat memuat file \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Cover" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Buat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Buat daftar dengan numbering." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Buat buletted list yang simpel." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Buat URL" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Crop Gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Khusus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Kustom %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Putus-Putus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Default" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Default + Dibulatkan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definisikan gradien custom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Hapus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Hapus %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Keterangan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Perangkat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Buang" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Buang record" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Apakah Anda ingin menginstal App %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Bertitik-titik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Double" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Klik dua kali untuk mengedit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Tarik dan lepas blok penyusun." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplikat Kontainer" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Warna Dinamik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Placeholder Dinamis" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "ERROR: tidak dapat mengunduh url dari pustaka media." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Edit Link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Edit gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Edit keterangan media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Mengedit file built-in melalui editor ini tidak disarankan, karena akan " +"membuatnya tidak dapat diupdate saat App di-upgrade di masa depan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Embed Gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Embed Video Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Embed gambar di dokumen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Embed video youtub di dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Kutipan kosong" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "DIharapkan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Perpanjang ke sudut terdekat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Perpanjang ke sisi terdekat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Perpanjang ke sudut terjauh" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Perpanjang ke sisi terjauh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "FIle telah diunggah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Isi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Fill + Dibulatkan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Isi Warna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Saring" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Panel Pertama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Flat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Fleksibel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Flip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Flip Horizontal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Flip Vertical" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Floating shapes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Warna Font" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Ukuran font" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Untuk alasan teknis, blok ini tidak dapat ditaruh di sini" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Layar penuh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Dapatkan gambar yang tepat dengan mencari di pustaka foto dan ilustrasi kami" +" yang bebas hak cipta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Header 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Header 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Header 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Header 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Header 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Heading 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Heading 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Heading 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Heading 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Heading 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Heading 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Tinggi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Sembunyikan logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Sembunyikan tombol fullscreen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Sembunyikan player control" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Sembunyikan tombol sharing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formatting Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Ukuran ikon 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Ukuran ikon 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Ukuran ikon 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Ukuran ikon 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Ukuran ikon 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Icon-icon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Jika Anda membuang edit saat ini, semua perubahan yang belum disimpan akan " +"hilang. Anda dapat membatalkan ini untuk kembali ke mode edit." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Bila Anda mereset file ini, semua kustomisasi Anda akan hilang karena akan " +"dikembalikkan ke file default." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustrasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatting Gambar" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Tinggi Gambar" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Sumber Gambar" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Lebar Gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Padding gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Gambar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Teks Inline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Masukkan di atas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Masukkan di bawah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Masukkan di kiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Masukkan media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Masukkan atau edit link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Masukkan konten yang dipersonalisasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Masukkan di kanan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Masukkan tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Pasang" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instal %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Penginstalan sedang berlangsung" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Value field tidak valid untuk %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Element Kasat Mata" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Item" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "File JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Besar" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Terakhir diperbarui oleh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Terakhir diperbarui pada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Kiri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linier" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Baris" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Tautan..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Label Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link disalin ke papan klip." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Tautan ke:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Daftar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Muat lebih..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Warna Utama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketing Tool" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Informasi lebih lanjut mengenai app ini." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Gerak ke bawah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Gerakkan ke kiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Gerakkan ke kanan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Gerak ke atas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Gambar-Gambar Saya" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Tidak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Tidak ada URL yang ditentukan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Tidak ada dokumen yang ditemukan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Tidak ada gambar-gambar yang ditemukan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Tidak ada lokasi untuk drop in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Tidak ada record lagi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Tidak ada pictogram yang ditemukan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Tidak Ada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Biasa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Daftar bernomor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Tes Odoo Editor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Hanya File SCSS Custom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Hanya File Page SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Only Views" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Buka di tab baru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Buka di jendela baru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Dioptimalkan" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Lampiran (tanpa optimalisasi, tanpa perubahan ukuran) Original" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Asal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Outline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Outline + Dibulatkan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opsi-Opsi Halaman" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Tempel sebagai URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Pola-Pola" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Posisi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Pratinjau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primer" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kualitas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Kutipan" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Kolom Kontak Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Tanggal Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Tanggalwaktu Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Durasi Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Tipe Float Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "HTML Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Kolom Gambar Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Integer Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Many to One Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Moneter Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Field Qweb Relatif" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Pemilihan Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Teks Field Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Field qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Field readonly" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Alihkan ulang user ke tempat lain saat mereka mengeklik media." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Buang (HAPUS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Hapus Blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Hapus Saat Ini" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Hapus Link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Hapus Warna Terpilih" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Hapus kolom-kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Hapus format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Hapus link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Namakan ulang %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Ulangi pola" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Ganti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Ganti media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Reset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Reset Gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Reset Ukuran" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Reset crop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Reset transformasi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Mereset tampilan belum didukung" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Resize Default" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Resize Penuh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Resize Setengah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Resize Seperempat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Kanan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Putar Kiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Putar Kanan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Baris" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "File SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Simpan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Simpan dan Instal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Simpan dan Muat Ulang" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Simpan record" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Cari dokumen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Cari pictogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Cari gambar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Cari block (contoh angka, dinding gambar, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Cari record..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Cari lebih..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Cari untuk menunjukkan lebih banyak record" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekunder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Cari blok pada halaman Anda untuk di-style." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Pilih media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Pembatas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Error server" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Bayangan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Bentuk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Bentuk: Lingkaran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Bentuk: Bulat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Bentuk: Thumbnail" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Tunjukkan gambar yang dioptimalkan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Tanda Tangan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Ukuran" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Ukuran 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Ukuran 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Ukuran 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Ukuran 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Ukuran 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Kecil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "SOlid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Seseorang dengan hak yang lebih tinggi sebelumnya memodifikasi area ini, " +"oleh karena itu Anda tidak dapat memodifikasinya sendiri." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Spesial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Gaya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Saran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Beralih arah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opsi Tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID Template:%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Teks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Warna Teks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Meratakan teks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Style teks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL sepertinya tidak bekerja." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL sepertinya valid." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Tanggalwaktu %s tidak cocok dengan format %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Dokumen sudah disimpan oleh orang lain dengan sejarah yang berbeda untuk " +"model %r, field %r dengan id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "URL yang disediakan tidak mereferensikan video apapun yang didukung" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "URL yang disediakan tidak valid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "URL yang disediakan tidak valid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Warna-warna tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Terdapat konflik di antara versi Anda dan versi database." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "URL ini tidak valid. Pratinjau tidak dapat diupdate." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Blok ini sudah ketinggalan jaman " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dokumen ini tidak disimpan!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "File ini adalah lampiran tampilan publik." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "File ini terlampir ke record saat ini." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Gambar ini adalah gambar eksternal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Tipe gambar ini tidak didukung untuk di-crop.
Bila Anda ingin crop " +"gambar ini, mohon unduh terlebih dahulu dari sumber aslinya dan unggah ke " +"Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Judul" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Tag judul" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Untuk membuat perubahan, taruh blok ini dan gunakan opsi baru di versi " +"terkini." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Untuk menyimpan snippet, kita harus menyimpan semua modifikasi Anda yang " +"sebelumnya dan memuat ulang halaman." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Toggle bold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Toggle checklist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Toggle ikon spin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Toggle " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Toggle daftar bernomor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Toggle strikethrough" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Toggle garis bawah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Toggle daftar tidak bernomor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformasi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformasi gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Transformasi gambar (klik dua kali untuk mereset transformasi)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Terjemahkan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Warna-warna transparan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Coba mencari dengan kata kunci lainnya." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Jenis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Ketik \"/\" untuk command" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL atau Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Hapus penyelarasan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Tidak terduga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Unggah dokumen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Unggah gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Format gambar yang diunggah tidak didukung. Coba dengan:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Format gambar yang diunggah tidak didukung. Coba dengan: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatting Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Kode video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video-Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Video di-mute saat autoplay diaktifkan" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Tampilan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Bundle tampilan dan asset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Peringatan: setelah menutup dialog ini, versi yang Anda kerjakan akan " +"dibuang dan tidak tersedia lagi." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Bergelombang" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Konverter Web Editor Subtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Test Konverter Web Editor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widget" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Lebar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Tulis sesuatu..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Anda dapat mengunggah dokumen dengan tombol berlokasi di pojok atas kiri " +"layar." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Anda dapat mengunggah gambar dengan tombol berlokasi di pojok atas kiri " +"layar." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Anda harus menentukan baik data atau url untuk membuat lampiran." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL Anda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zoom In" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zoom Out" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "add" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "dan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "gelapkan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "default" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "pengecualian" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "terangkan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiply" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "overlay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "layar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "video" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "penanganan pesan websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/is.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/is.po new file mode 100644 index 0000000..520afa3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/is.po @@ -0,0 +1,3396 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2022 +# jonasyngvi, 2024 +# Kristófer Arnþórsson, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Kristófer Arnþórsson, 2024\n" +"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Bæta við" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Virkja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Viðhengi" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Bakgrunnur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Grunnur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Eyða" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Loka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kóði" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Litur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Staðfesta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Búa til" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Búið til af" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Búið til þann" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Sjálfgefið" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Lýsing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Hætta við" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Birtingarnafn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Fylla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Snið" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "Auðkenni (ID)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Mynd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Vinstri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Listi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Miðlungs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nafn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "No" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" +" " +"Greitt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Staða" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Skipta um" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Hægri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Stærð" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Lítið" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stíll" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Texti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Skoða" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Yes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/it.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/it.po new file mode 100644 index 0000000..fe3ab58 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/it.po @@ -0,0 +1,3457 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Luca Carlo, 2023 +# Martin Trigaux, 2023 +# Sergio Zanchetta , 2023 +# Marianna Ciofani, 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (originale)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (consigliato)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"Il tag \"alt\" indica un testo alternativo per l'immagine se non può essere " +"visualizzata (connessione lenta, immagine mancante, lettore a schermo...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"Il tag \"title\" viene mostrato come suggerimento quando il mouse viene " +"posizionato sull'immagine." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(tag ALT)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(tag TITLE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL o incorporato)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 colonne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 stelle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 colonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 colonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 stelle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "gradi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blocchi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Personalizza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Errore del server. Controllare che l'accesso sia avvenuto correttamente e " +"che il file da salvare abbia il formato corretto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Sopra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Accettati" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Aggiungi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Aggiungi colonna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Aggiungi riga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Aggiungi URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Aggiungi una sezione citazione." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Aggiungi un pulsante." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Aggiungi una sezione codice." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Aggiungi colonna a sinistra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Aggiungi colonna a destra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Aggiungi un collegamento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Aggiungi una riga in alto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Aggiungi riga in basso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Leggero e zig zag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Avviso" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Allinea al centro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Allinea a sinistra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Allinea a destra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Allineamento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tutte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Tutti i file SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Tutti i documenti sono stati caricati" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Tutte le immagini sono state caricate" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Angolo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animazione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonimo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Applica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Eliminare veramente lo snippet %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Eliminare veramente questo file?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Rapporto di forma" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Utilità asset" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Allegato" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL allegato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Autoconverti in link relativo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Riproduzione automatica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Torna a una colonna." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Sfondo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Colore sfondo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Posizione sfondo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Blocchi base" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Essenziali" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Sotto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Grande intestazione di sezione." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Macchie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blocco" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocchi e pioggia" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Sfocatura" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Grassetto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Bordo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Colore bordo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Stile bordo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Larghezza bordo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Luminosità" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Elenco puntato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Pulsante" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Annulla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Attenzione !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Al centro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Modifica descrizione e suggerimento per l'elemento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Lista di controllo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Scegli un record..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Chiudi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Codice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Colore" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtro colore" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Colori" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Colonna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Colori comuni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Conferma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Conferma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflitto contenuto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contrasto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Converti in 2 colonne." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Converti in 3 colonne." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Converti in 4 colonne." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copia link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copia e incolla qui l'URL o il codice incorporato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Impossibile installare il modulo %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Impossibile caricare il file \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Coperto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Crea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Crea un elenco con numerazione." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Crea un semplice elenco puntato." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Crea un URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalizzato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Blocco %s personalizzato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Tratteggiato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Predefinito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Predefinito + arrotondato" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Imposta una sfumatura personalizzata" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Eliminare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Elimina %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Rimuovere tabella corrente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descrizione" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispositivi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Abbandona" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Scarta modifiche" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Installare l'applicazione «%s»?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Punteggiato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Doppio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Doppio clic per modificare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Trascina e rilascia il blocco di costruzione." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplica contenitore" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Colori dinamici" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Segnaposto dinamico" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "ERRORE: impossibile ottenere gli URL dal catalogo multimediale." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Modifica Link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Modifica immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Modifica descrizione di media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Non è consigliato modificare un file interno attraverso l'editor, i futuri " +"aggiornamenti delle applicazioni non potranno più aggiornarlo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Incorpora immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Incorpora video Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Incorpora l'immagine nel documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Incorpora il video di Youtube nel documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Citazione vuota" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Atteso:" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Estendi all'angolo più vicino" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Estendi al lato più vicino" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Estendi all'angolo più lontano" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Estendi al lato più lontano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Il file è stato caricato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Riempimento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Riempimento + arrotondato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Riempimento colore" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Primo pannello" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Piatto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flessibile" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Capovolgi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Riflessione orizzontale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Riflessione verticale" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Forme fluttuanti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Fluttuanti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Colore carattere" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Dimensione carattere" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Per ragioni tecniche, qui non è possibile rilasciare il blocco" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formatta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Schermo intero" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Cerca nel nostro catalogo di fotografie e illustrazioni gratuite e trova " +"l'immagine perfetta." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Sfumatura" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Instradamento HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Titolo 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Titolo 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Titolo 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Titolo 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Titolo 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Titolo 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Titolo 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Titolo 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Titolo 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Titolo 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Titolo 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Titolo 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Altezza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Nascondi logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Nascondi pulsante schermo intero" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Nascondi controlli di riproduzione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Nascondi pulsante di condivisione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formattazione Icona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Dimensione icona 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Dimensione icona 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Dimensione icona 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Dimensione icona 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Dimensione icona 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Icone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Se viene abbandonata la versione corrente, tutte le modifiche non salvate " +"andranno perse. È possibile annullare per tornare alla modalità di modifica." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Con il ripristino del file verranno perse tutte le personalizzazioni, sarà " +"ripristinato a quello predefinito." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustrazioni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formattazione immagine" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Altezza immagine" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Fonte immagine" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Larghezza immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Spaziatura immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Immagini" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Testo in linea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Inserisci una valutazione sopra 3 stelle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Inserisci una valutazione sopra 5 stelle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Inserisci una tabella." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Inserisci un video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Inserisci sopra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Inserisci un separatore orizzontale." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Inserisci un'immagine." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Inserisci sotto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Inserisci a sinistra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Inserire media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Inserisci o modifica il link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Inserisci contenuto personalizzato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Inserisci a destra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Inserisci tabella" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Inserisci la tua firma." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Installazione di «%s»" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installazione in corso" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valore campo non valido per %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Elementi invisibili" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Voce" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "File JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Grande" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Sinistra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Righe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Etichetta link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link copiato negli appunti." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Collegamento a" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "elenco" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Carica altri..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Ciclo continuo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Colore principale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Strumenti di marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Intestazione della sezione media." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Maggiori informazioni su questa applicazione." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Sposta in giù" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Sposta a sinistra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Sposta a destra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Sposta in su" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Le mie immagini" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nome" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigazione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "No" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Nessun URL specificato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nessun documento trovato." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nessuna immagine trovata." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Nessuna posizione per il rilascio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Nessun altro record" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nessun pittogramma trovato." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nessuno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Elenco numerato" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Prove Editor Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Solo file SCSS personalizzati" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Solo file SCSS della pagina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Solo viste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Aprire una nuova scheda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Apri in nuova finestra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Ottimizzata" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Allegato originale (non ottimizzato o ridimensionato)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Origini" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contorno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Contorno + arrotondato" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opzioni pagina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Blocco Paragrafo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Incolla come URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Motivi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Posizione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Anteprima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primario" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Che diavolo sta facendo quel dannato pancake, maledizione ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Che non è arrivato a Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Che doveva arrivare a Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Qualità" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citazione" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Campo QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Campo QWeb contatto" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Campo QWeb data" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Campo QWeb data/ora" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Campo QWeb durata" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Campo QWeb virgola mobile" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Campo QWeb HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Campo QWeb immagine" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Campo QWeb intero" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Campo QWeb molti a uno" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Campo QWeb monetario" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Campo QWeb relativo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Campo QWeb selezione" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Campo QWeb testo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Campo QWeb qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radiale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Campo sola lettura" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Reindirizza l'utente altrove quando clicca sul media." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Rimuovi (CANCELLA)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Rimuovi blocco" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Rimuovi corrente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Rimuovi link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Rimuovi il colore selezionato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Rimuovi colonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Togliere colonna corrente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Rimuovere la riga corrente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Rimuovere il formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Rimuovi link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Rinomina %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Ripeti motivo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Sostituire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Sostituisci contenuto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Ripristina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Ripristina immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Resetta dimensione" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Ripristina ritaglio" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Resettare cambiamento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Ripristino viste non ancora supportato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Ridimensionamento predefinito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Ridimensiona al 100%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Ridimensiona al 50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Ridimensiona al 25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "A destra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Ruota a sinistra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Ruota a destra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Riga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "File SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturazione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Salva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Salva e installa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Salva e ricarica" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Salva record" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Cerca un documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Cerca un pittogramma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Cerca un'immagine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Cerca un blocco (es. numeri, immagini, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Cerca record..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Cerca altro..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Cerca per mostrare più record" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secondario" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Seleziona un blocco sulla tua pagina per disegnarla." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Seleziona un'immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separatore" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Seppia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Errore del server" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Ombra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forma: cerchio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forma: Arrotondato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Mostra immagini ottimizzate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Firma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Dimensione" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Dimensione 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Dimensione 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Dimensione 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Dimensione 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Dimensione 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Piccolo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Intestazione della sezione piccola." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Tinta unita" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solidi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Quest'area è stata modificata in precedenza da una persona con diritti " +"maggiori, pertanto non è possibile modificarla da soli." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Speciali" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struttura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stile" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Proposte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Inverti direzione" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Inverti la direzione del testo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabella" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opzioni tabella" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Strumenti tabella" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID modello: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Testo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Colore testo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Allineamento testo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Stile del testo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "L'URL non sembra essere valido." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "L'URL sembra valido." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Data e ora %s non corrispondono al formato %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Il documento è stato già salvato da qualcuno con una cronologia differente " +"per il modello %r, campo %r con id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "L'URL fornito non fa riferimento ad alcun video supportato" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "L'url fornito non è valido" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "L'URL fornito non è valido" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Verrà utilizzata la versione del database.\n" +" Se hai bisogno di mantenere le modifiche, copia il contenuto sottostante e modifica in un nuovo documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Colori del tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "C'è un conflitto tra la tua versione e quella nel database." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "URL non valido, l'anteprima non può essere aggiornata." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Questo blocco è obsoleto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Questo documento non è salvato!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Questo file è un allegato di una vista pubblica." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Questo file è allegato al record corrente." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Immagine di tipo esterno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Ritaglio non supportato per questo tipo di immagine.
Per effettuare il " +"ritaglio, scaricare prima l'immagine originale e caricarla in Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titolo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Etichetta titolo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Per apportare modifiche, rilascia questo blocco e usa le nuove opzioni " +"dell'ultima versione." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Per salvare uno snippet è necessario salvare tutte le precedenti modifiche e" +" ricaricare la pagina." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Da fare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Attiva grassetto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Attiva lista di controllo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Attiva rotazione dell'icona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Attiva corsivo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Attiva elenco ordinato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Attiva barratura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Attiva sottolineatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Attiva elenco non ordinato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Suggerimento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Tieni traccia dei compiti con una lista di controllo." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Trasforma" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Trasforma l'immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Trasforma l'immagine (fai doppio clic per resettare la trasformazione)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traduci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Colori trasparenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Prova a cercare con altre parole chiave." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipologia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Digita \"/\" per i comandi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL / E-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Disallineare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Non atteso:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Carica documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Carica immagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Il formato dell'immagine caricata non è supportato. Prova con:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Il formato dell'immagine caricata non è supportato. Prova con: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formattazione video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Codice video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Con la riproduzione automatica abilitata i video vengono silenziati" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Viste e asset insieme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Attenzione: dopo aver chiuso questa finestra, la versione alla quale stavi " +"lavorando sarà scartata e non sarà più disponibile." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Ondulato" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Sottoprova del convertitore editor web" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Prova del convertitore editor web" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widget" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Larghezza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Scrivi qualcosa..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Sì" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Carica i documenti con il pulsante che si trova in alto a sinistra dello " +"schermo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Carica le immagini con il pulsante che si trova in alto a sinistra dello " +"schermo." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Per creare un allegato è necessario specificare un file o un URL." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "La tua URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "YouTube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zoom avanti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zoom indietro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "aggiungi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "e" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "automatica" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "scurisci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "predefinito" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "esclusione" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "schiarisci" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "moltiplica" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "sovrapponi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "scherma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "(video)" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "Gestione dei messaggi websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ja.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ja.po new file mode 100644 index 0000000..0a16c3a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ja.po @@ -0,0 +1,3427 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Ryoko Tsuda , 2022 +# Noma Yuki, 2022 +# Andy Yiu, 2023 +# Martin Trigaux, 2023 +# Wil Odoo, 2025 +# Junko Augias, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Junko Augias, 2025\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (元)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (推奨)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "画像が表示できない場合 (遅い接続、見つからない画像、スクリーンリーダーなど)、「代替タグ」は画像に代替テキストを特定します。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "画像の上にマウスを置くと「タイトルタグ」はツールチップとして表示されます。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(代替タグ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(タイトルタグ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL又は埋め込む)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2列" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3星" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5星" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "ブロック" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "カスタマイズ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "サーバーエラーが発生しました。正しくサインインしたか、又は保存しているファイルは正しくフォーマットされているかをご確認ください。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "上" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "同意" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "列を追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "行を追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URLを追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Blockquoteセクションを追加。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "ボタンを追加。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "コードセクションを追加。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "左に列を追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "右に列を追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "リンクを追加。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "上に行を追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "下に行を追加" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "警告" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "中央揃え" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "左揃え" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "右揃え" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "配置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "全て" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "全てのSCSSファイル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "全ての書類が読み込まれました" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "全ての画像が読み込まれました" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "代替タグ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "角度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "アニメーション" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "匿名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "適用" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "このスニペットを削除しますがよろしいですか: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "このファイルを削除しますがよろしいですか?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "アスペクト比" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "アセットユーティリティ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "添付ファイル" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "添付URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "相対リンクに自動変換" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "自動再生" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "一列に戻る。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "背景" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "背景色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "背景位置" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "ベース" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "基本ブロック" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "基本" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "下" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "大セクション見出し。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "ブロブ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "ブロック" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "ブロック & レイニー" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "ぼかし" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "ボールド" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "ボーダー" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "ボーダー色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "ボーダースタイル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "ボーダー幅" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "明るさ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "箇条書きリスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "ボタン" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "キャンセル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "ご注意ください!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "中央" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "メディアの説明とツールチップを変更" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "チェックリスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "レコードを選択..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "閉じる" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "コード" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "色フィルダー" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "一般的な色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "確認" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "確認" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "衝突コンテンツ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "コントラスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "二列に変換。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "三列に変換。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "四列に変換。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "リンクをコピー" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "ここにURL又は埋め込みコードをコピーペーストしてください" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "モジュール%sはインストールできませんでした" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "ファイル \"%s\"をロードできませんでした" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "カバー" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "作成" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "段落番号でリストを作成。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "簡単な箇条書きリストを作成。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "URLを作成。" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "作成者:" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "作成日:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "画像を切り抜く" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "カスタム" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "カスタム%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "破線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "デフォルト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "デフォルト + 丸い" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "カスタムグラデーションを定義" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "削除%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "現在の表を削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "説明" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "装置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "破棄" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "レコードを破棄" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "%sアプリをインストールしますがよろしいでしょうか?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "書類" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "点線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "ダブル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "ダブルクリックして編集" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "ビルディングブロックをドラックアンドドロップ。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "コンテナを複製" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "ダイナミック色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "ダイナミックプレースホルダー" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "エラー: メディアライブラリーからURLをダウンロードできませんでした。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "リンクを編集" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "画像を編集" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "メディア説明を編集" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "今後のアプリアップグレード時に更新されないのでこのエディタを使って組み込みファイルを編集することはおすすめしません。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "埋め込み画像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "埋め込みYoutube動画" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "書類に画像を埋め込みます。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "書類にYoutube動画を埋め込みます。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "絵文字引用" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "予定" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "最も近い隅に伸ばす" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "最も近い側に伸ばす" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "最も遠い隅に伸ばす" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "最も遠い側に伸ばす" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "ファイルはアップロードされました" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "塗りつぶし" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "塗りつぶし + 丸い" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "塗りつぶし" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "フィルター" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "ファーストパネル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "フラット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "柔軟" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "反転" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "左右に反転" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "上下に反転" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "浮遊形状" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "浮遊" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "フォント色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "フォントサイズ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "技術上の理由でこのブロックはここにドロップできません" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "フォーマット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "全画面表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "私たちの著作権フリー写真・イラストライブラリーから完璧な画像を見つけ出しましょう。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "グラデーション" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTPルーティング" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "ヘッダ 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "ヘッダ 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "ヘッダ 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "ヘッダ 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "ヘッダ 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "ヘッダ 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "見出し 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "見出し 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "見出し 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "見出し 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "見出し 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "見出し 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "高さ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotionロゴを非表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "全画面表示ボタンを非表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "プレイヤーコントロールを非表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "共有ボタンを非表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "アイコン" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "アイコンフォーマット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "アイコンサイズ 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "アイコンサイズ 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "アイコンサイズ 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "アイコンサイズ 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "アイコンサイズ 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "アイコン" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "現在の編集を破棄した場合、未保存の全ての変更が失われます。キャンセルして編集モードに戻られます。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "このファイルをリセットする場合、全てのカスタマイズが失われてデフォルトファイルに戻ります。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "イラスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "画像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "画像フォーマット" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "画像高さ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "画像Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "画像幅" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "画像パディング" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "画像" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "インラインテキスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "3星以上の評価を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "5星以上の評価を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "表を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "動画を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "上に挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "区切り水平線を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "画像を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "下に挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "左に挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "メディアを挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "リンクを挿入・編集" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "パーソナライズコンテンツを挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "右に挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "表を挿入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "自分の署名を挿入。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "インストール" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "インストール%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "インストール中" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "%sに無効なフィールド値: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "非表示要素" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "項目" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JSファイル: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "大" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "最終更新日:" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "最終更新担当:" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "最終更新日:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "左" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "線型" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "リンク" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "リンクラベル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "リンクはクリップボードにコピーされました。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "リンク先:" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "リスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "さらに読み込む..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "ループ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "メイン色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "マーケティングツール" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "メディア" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "中" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "中セクション見出し。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "このアプリについての詳細情報。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "下に移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "左に移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "右に移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "上に移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "自分の画像" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "名称" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "ナビゲーション" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "いいえ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "特定されたURLはありません" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "書類は見つかりませんでした。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "画像は見つかりませんでした。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "ドロップできる場所はありません" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "これ以上のレコードはありません" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "ピクトグラムは見つかりませんでした。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "なし" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "通常" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "段落番号リスト" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odooエディターテスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "カスタムSCSSファイルのみ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "ページSCSSファイルのみ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "閲覧のみ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "新しいタブで開く" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "新しいウインドウで開く" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "最適化済" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "元 (未最適化・サイズ変更)の添付ファイル" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "入手元" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "アウトライン" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "アウトライン + 丸い" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "パディング" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "ページオプション" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "段落ブロック。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "URLとして貼付" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "パターン" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "位置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "プレビュー表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "プライマリ" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "品質" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "引用" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qwebフィールド" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qwebフィールドコンタクト" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qwebフィールド日付" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qwebフィールド日時" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qwebフィールド期間" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qwebフィールドフロート" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "QwebフィールドHTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qwebフィールド画像" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qwebフィールド整数" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qwebフィールド多対一" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qwebフィールド金融" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qwebフィールド相対" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qwebフィールド選択" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qwebフィールドテキスト" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qwebフィールドqweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "放射状" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "読取専用フィールド" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "メディアをクリックしたユーザーを他のところにリダイレクトします。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "削除 (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "ブロックを削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "現在のを削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "リンクを削除" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "選択した色を削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "列を削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "現在の列を削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "現在の行を削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "フォマットを削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "リンクを削除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "名前変更%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "パータンを繰り返す" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "置き換える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "メディアを置き換える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "リセット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "画像をリセット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "サイズを再設定" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "切り抜きをリセット" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "変形をリセット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "閲覧リセットにまだ対応してません" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "サイズ変更デフォルト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "全画面でサイズ変更" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "半画面でサイズ変更" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "四分の一でサイズ変更" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "右" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "左に回転" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "右に回転" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSSファイル: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "彩度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "保存" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "保存してインストール" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "保存して再読込" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "レコードを保存" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "書類を検索" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "ピクトグラムを検索" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "画像を検索" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "ブロックを検索 (例: 番号、画像壁...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "レコードを検索..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "もっと検索..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "検索してさらにレコードを表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "セカンダリ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "ページ中のブロックを選択して編集します。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "メディアを選択" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "区切り線" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "サーバーエラー" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "影" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "形状" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "形状: 円" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "形状: 丸い" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "形状: サムネイル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "最適化済画像を表示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "署名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "サイズ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "サイズ 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "サイズ 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "サイズ 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "サイズ 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "サイズ 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "小" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "小セクション見出し。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "ソリッド" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "ソリッド" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "より高いアクセス権を有するユーザーは最近このエリアを変更しましたのであなたは変更できないようになりました。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "スペシャル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "構成" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "スタイル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "提案" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "方向を変更" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "テキスト方向を変更。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "表オプション" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "表ツール" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "テンプレートID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "テキスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "テキスト色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "テキスト配置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "テキストスタイル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URLは無効みたいです。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URLは有効みたいです。" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "%sの日時は%sのフォーマットと一致しません" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "ドキュメントはmodel %r, field %r with id %rの異なる履歴を持つ他の誰かによって既に保存されています。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "提供されたURLはどんな対応動画でも参照してません" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "提供されたURLは無効です" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "提供されたURLは無効です" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"データベースのバージョンが使われます。\n" +" 変更を保存したい場合は下のコンテンツをコピーして新規書類に編集してください。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "テーマ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "テーマ色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "お使いのバージョンとデータベースのバージョンは一致ではありません。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "このURLは無効です。プレビュー表示はアップデートできません。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "このブロックは古いです" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "この書類は保存されてません!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "このファイルはパブリックビュー添付ファイルです。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "このファイルは現在のレコードに添付されています。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "この画像は外部画像です" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "この画像タイプは切抜に対応してません。
切抜したい場合は元のソースから画像をダウンロードしてOdooにアップロードしてください。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "タイトル" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "タイトルタグ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "変更するにはこのブロックをドロップして最新バージョンの新規オプションを使ってください。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "スニペットを保存するには以前の全変更を保存してページを再読み込みしなければなりません。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "予定" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "太字を切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "チェックリストを切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "アイコン回転を切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "斜体を切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "順序付きリストを切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "取消線を切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "下線を切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "順序なしリストを切り替える" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "ツールチップ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "チェックリストで作業を追跡。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "変形" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "画像を変形" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "画像を変形 (2回クリックしてリセットできる)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "翻訳" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "透明色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "他のキーワードで検索してみましょう。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "タイプ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "コマンドには「/」を入力してください" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL又はEメール" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "整列なし" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "予想外" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "書類をアップロード" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "画像をアップロード" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "アップロードされた画像のフォーマットは対応されてません。他のを試行してください:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "アップロードされた画像のフォーマットは対応されてません。他のを試行してください: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "動画" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "動画フォーマット" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "動画コード" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "ビデオ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "自動再生を有効化すると動画がミュートされます" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "ビュー" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "ビュー及びアセットバンドル" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "警告: このダイアログを閉じた後、現在作業中のバージョンは放棄されて今後も使えなくなります。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "波状" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Webエディターコンバーターサブテスト" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Webエディターコンバーターテスト" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "ウィジェット" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "幅" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "何か書いて下さい..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "はい" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "画面の左上にあるボタンで書類をアップロードすることができます。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "画面の左上にあるボタンで画像をアップロードすることができます。" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "添付ファイルを作成するにはデータかURLかを指定してください。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "あなたのURL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "拡大" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "縮小" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "追加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "と" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "自動" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "暗くする" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "デフォルト" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "除外" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "明るくする" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "掛ける" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "オーバーレイ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "画面" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "動画" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "WebSocketメッセージ処理" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ka.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ka.po new file mode 100644 index 0000000..45a649c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ka.po @@ -0,0 +1,1516 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-06-27 15:58+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "(Youtube, Vimeo, Dailymotion)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "ქმედება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "დამატება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "სურათის URL-ის დამატება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "ალტერნატიული ატვირთვა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "ძირითადი" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "შეწყვეტა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "დახურვა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "კოდი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "ფერის სტილი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "შემქმნელი" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "შექმნის თარიღი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, fuzzy, python-format +msgid "Custom" +msgstr "მორგება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "მორგება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "საფრთხე" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "ნაგულისხმევი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, fuzzy, python-format +msgid "Description" +msgstr "ცვლილებების გაუქმება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "გაუქმება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "ცვლილებების გაუქმება" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "შეცვლა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "დახმარება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "იდენტიფიკატორი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "გამოსახულება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "ინფორმაცია" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "დიდი" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "ბოლოს განაახლა" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "ბოლოს განახლებულია" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "ბმული" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "საშუალო" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "შემდეგი →" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "არცერთი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "ნორმალური" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "მოცილება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "ზომის შეცვლა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "შენახვა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "ძიება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "ზომა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "პატარა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "სტილი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, fuzzy, python-format +msgid "Upload an image" +msgstr "სურათის URL-ის დამატება" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "მიმდინარეობს ატვირთვა ..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "ვიდეო" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "გაფრთხილება" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "ყველა" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "http://openerp.com" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "http://openerp.com/logo.png" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "უცნობი" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "შეუნახავი ცვლილებები დაიკარგება." + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "— ან —" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "← წინა" + +#~ msgid "Change..." +#~ msgstr "შეცვლა..." + +#~ msgid "Insert Blocks" +#~ msgstr "ბლოკის ჩასმა" + +#~ msgid "or" +#~ msgstr "ან" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/kab.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/kab.po new file mode 100644 index 0000000..377460c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/kab.po @@ -0,0 +1,1513 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-30 09:29+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "(Youtube, Vimeo, Dailymotion)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Tigawt" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Rnu" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "Rnu URL n tugna" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "URL n useddu" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, python-format +msgid "Background Image Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Sefsex" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Mdel" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Tangalt" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Yerna-t" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Yerna di" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, fuzzy, python-format +msgid "Custom" +msgstr "Sagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "Sagen" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "S uwennez n tazwara" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, fuzzy, python-format +msgid "Description" +msgstr "Sefsex aẓrag" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Sefsex" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "Sefsex aẓrag" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Arrat" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Ẓreg" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "Amsebred HTTP" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Tallalt" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "Asulay" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Tugna" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Information" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Aleqqem aneggaru di" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Aleqqem aneggaru sɣuṛ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Aleqqem aneggaru di" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ulac" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Amagnu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Timeẓriwt" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Kkes" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Wennez" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Kles" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Nadi" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "Fren tugna" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "Tili" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Teɣzi" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "Aɣan" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "URL neɣ Tansa Imayl" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, fuzzy, python-format +msgid "Upload an image" +msgstr "Rnu URL n tugna" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Ad iţali..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "ɣuṛ-ek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "akkw" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "http://openerp.com" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "http://openerp.com/logo.png" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "arussin" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "— neɣ—" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "← ɣer deffir" + +#~ msgid "Change..." +#~ msgstr "Snifel..." + +#~ msgid "or" +#~ msgstr "neɣ" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/km.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/km.po new file mode 100644 index 0000000..b533380 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/km.po @@ -0,0 +1,3426 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Sengtha Chay , 2023 +# Lux Sok , 2025 +# Chan Nath , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Chan Nath , 2025\n" +"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' បញ្ជាក់អត្ថបទជំនួសសម្រាប់រូបភាពប្រសិនបើរូបភាពមិនអាចត្រូវបានបង្ហាញ " +"(ការភ្ជាប់យឺតរូបភាពបាត់ឧបករណ៍អានអេក្រង់ ... ) ។" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'ស្លាកចំណងជើង' ត្រូវបានបង្ហាញជាព័ត៌មានជំនួយនៅពេលអ្នកដាក់រូបភាព។" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL or Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"កំហុសម៉ាស៊ីនមេកើតឡើង។ " +"សូមពិនិត្យថាអ្នកបានចុះឈ្មោះចូលត្រឹមត្រូវហើយឯកសារដែលអ្នកកំពុងរក្សាទុកត្រូវបានធ្វើទ្រង់ទ្រាយត្រឹមត្រូវ។" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "ទទួលយក" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "បន្ថែម" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "បន្ថែមURL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "ការដាស់តឿន" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "ទាំងអស់" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "មិនមានបន្ថែម" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "កំណត់យក" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "សមាមាត្រ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "ឯកសារ​ភ្ជាប់" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "ឯកសារភ្ជាប់ URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "លេង​ដោយស្វ័យប្រវត្តិ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "ប្រវត្តិ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "ពណ៌ផ្ទៃខាងក្រោយ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "មូលដ្ឋាន" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "រារាំង។" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "ដិត" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "លុបចោល" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "ប្រុងប្រយ័ត្ន !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "កណ្ដាល" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "បិទ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "កូដ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "ពណ៍" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "ពណ៌" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "ជួរឈរ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "បញ្ជាក់" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "ការបញ្ជាក់" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "ការបង្កើត" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "អតិថជន" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "លំនាំដើម។" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "លុប" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "ការពិពណ៌​នា​" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "ទូរស័ព្ទ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "បោះបង់" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "ឯកសារ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "ឯកសារ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "ផ្ទះ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "ទ្រង់ទ្រាយ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP ជុំវិញ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "តំលៃខ្ពស់" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "រូបតំណាង" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "រូបភាព" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "ដំឡើង។" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "ធំ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "លីនេអ៊ែរ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "ឋានៈនុក្រម" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "តំណ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "តារាង" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "រង្វិលជុំ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "ប្រព័ន្ធផ្សព្វផ្សាយ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "ឈ្មោះ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "ទេ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "គ្មាន" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "ធម្មតា" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "មុខតំណែង" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "ពីមុន" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "គុណភាព" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "ទំនាក់ទំនងជំនាញ Qweb " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb Field Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "បណ្តាញរូបភាព Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "ជំនួស" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "កំណត់ឡើងវិញ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "កំណត់រូបភាពឡើងវិញ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "រក្សាទុក" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "ម៉ាស៊ីនខូច" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "សណ្ឋាន" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "ហត្ថលេខា" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "ទំហំ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "តូច" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "រចនាសម្ព័ន្ធ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "តារាង" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "អត្ថបទ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "ផ្ទៃ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "ចំណងជើង​" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "ពត៌មានជំនួយ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "បកប្រែ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "ប្រភេទ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "វីដេអូ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "វីដេអូ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "មើល" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "ទទឹង" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "ត្រឹមត្រូវ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "ពង្រើក" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "បង្រួម" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "មន្ថែម" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "និង" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "ស្វ័យប្រវត្តិ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "វីដេអូ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ko.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ko.po new file mode 100644 index 0000000..69ecff4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ko.po @@ -0,0 +1,3430 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Linkup , 2022 +# Martin Trigaux, 2023 +# Daye Jeong, 2024 +# Wil Odoo, 2025 +# Sarah Park, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Sarah Park, 2025\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%d픽셀 (원본)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%d픽셀 (권장 사항)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%s픽셀" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt 태그'는 이미지를 표시할 수 없는 경우(저속 연결, 누락된 이미지, 화면 판독기 등) 이미지의 대체 텍스트를 지정합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "사진을 가리키면 '제목 태그'가 툴팁으로 표시됩니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT 태그)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(제목 태그)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL 또는 임베드)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 열" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "별 3개" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 열" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 열" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "별 5개" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "블록" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "사용자 정의" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "서버 오류가 발생했습니다. 로그인이 올바르고 저장중인 파일의 형식이 올바른지 확인하십시오." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "위" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "수락" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "추가" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "열 추가" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "행 추가" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URL 추가" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "인용 블록 섹션을 추가합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "버튼을 추가합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "코드 섹션을 추가합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "링크를 추가합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "주의" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "중앙 정렬" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "왼쪽 정렬" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "오른쪽 정렬" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "정렬" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "전체" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "모든 SCSS 파일" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "모든 문서가 불러오기 되었습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "모든 이미지가 로드되었습니다" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt 태그" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "각도" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "생기있음" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "익명" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "적용" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "이 파일을 삭제 하시겠습니까?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "종횡비" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "에셋 유틸" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "첨부 파일" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "첨부 파일 URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "상대 링크로 자동 변환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "자동 재생" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "배경" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "배경 색상" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "배경 위치" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "기본 블록" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "베이직" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "아래" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "큰 섹션의 제목입니다." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "곡선형 도형" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "블록" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "블록 & 비" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "블러" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "굵게" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "테두리" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "테두리 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "테두리 스타일" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "테두리 두께" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "밝기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "글머리 기호 목록" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "버튼" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "취소" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "주의하세요!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "중앙" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "미디어 설명 및 툴팁 변경" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "점검표" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "레코드 선택..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "닫기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "코드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "색상" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "색상 필터" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "열" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "공통 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "승인" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "확인" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "콘텐츠 충돌" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "대비" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "2열로 변환합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "3열로 변환합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "4열로 변환합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "링크 복사" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" +"여기에 URL을 복사하여 붙여 넣거나 코드를 삽입하십시오\n" +" " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "%s 모듈을 설치할 수 없습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "파일 \"%s\"를 로드할 수 없습니다." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "표지" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "작성" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "번호가 매겨진 목록을 생성합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "URL을 생성합니다." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "작성일자" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "이미지 자르기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "사용자 정의" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "사용자 지정 %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "현황판에 게시" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "기본" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "기본 + 둥근 모서리" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "사용자 지정 그라데이션" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "삭제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "%s 삭제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "설명" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "장치" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "작성 취소" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "기록 삭제" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "표시명" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "%s 앱을 설치하시겠습니까?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "문서" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "점 찍힘" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "두번" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "편집하려면 두 번 클릭하십시오." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "빌딩 블록을 드래그 앤 드롭하세요." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "컨테이너 복제" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "동적 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "동적 자리 표시자" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "오류: 미디어 라이브러리에서 다운로드 URL을 가져올 수 없습니다." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "얼리버드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "링크 편집" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "이미지 편집" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "매체 설명 편집" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "이 편집기를 통해 기본 파일을 편집하면 향후 앱 업그레이드 시 업데이트되지 않으므로 권장하지 않습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "이미지 임베드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "유튜브 동영상 임베드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "문서에 이미지를 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "문서에 유튜브 동영상을 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "빈 인용문" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "예상됨" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "가장 가까운 모서리로 확장" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "가장 가까운 쪽으로 확장" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "가장 먼 곳까지 확장" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "가장 먼 쪽으로 확장" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "파일이 업로드 되었습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "채우기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "채우기 + 둥근 모서리" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "색상 채우기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "필터" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "첫 번째 패널" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "고정 소수점" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "휘어지는" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "대칭 이동" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "수평으로 뒤집기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "수직 뒤집기" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "플로팅 도형" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "글꼴 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "글자 크기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "기술적인 이유로 이 블록은 여기에 놓을 수 없습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "형식" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "전체 화면" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "라이브러리에서 저작권이 없는 사진 및 일러스트레이션을 검색하여 꼭 맞는 이미지를 사용할 수 있습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "그라데이션" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 라우팅" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "제목 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "제목 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "제목 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "제목 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "제목 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "제목 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "제목 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "제목 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "제목 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "제목 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "제목 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "제목 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "높이" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotion 로고 숨기기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "전체 화면 버튼 숨기기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "플레이어 컨트롤 숨기기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "공유 버튼 숨기기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "아이콘" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "아이콘 서식" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "아이콘 사이즈 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "아이콘 사이즈 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "아이콘 사이즈 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "아이콘 사이즈 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "아이콘 사이즈 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "아이콘" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "현재 편집 내용을 취소하면 저장되지 않은 모든 변경 사항이 손실됩니다. 취소하여 편집 모드로 돌아갈 수 있습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr " 파일을 재설정하면 모든 맞춤 설정한 내용이 기본 파일로 되돌아가므로 손실됩니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "일러스트레이션" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "이미지" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "그림 서식" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "이미지 높이" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "이미지 Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "이미지 폭" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "이미지 여백" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "이미지" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "잉크웰" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "글꼴 편집" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "별 3개 이상 평점을 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "별 5개 이상 평점을 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "표를 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "위로 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "가로선 구분 기호를 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "이미지를 삽입합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "아래로 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "왼쪽으로 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "매체 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "링크 삽입 또는 편집" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "맞춤형 콘텐츠 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "오른쪽으로 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "표 삽입" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "서명을 추가합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "설치하기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "%s 설치" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "설치 중" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "필드 값이 잘못되었습니다 %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "보이지 않는 요소" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "항목" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS 파일 : %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "크게" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "최근 수정일" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "최근 갱신 일자" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "왼쪽" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "선형" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "명세" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "링크" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "링크 꼬리표" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "링크가 클립보드에 복사되었습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "링크 걸기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "목록" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "추가 불러오기 ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "반복" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "주요 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "마케팅 도구" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "메이븐" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "매체" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "매체" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "중간 섹션의 제목입니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "이 앱에 대한 자세한 정보를 확인하세요." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "아래로 이동" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "왼쪽으로 이동" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "오른쪽으로 이동" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "위로 이동" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "나의 이미지" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "이름" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "탐색" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "아니오" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL이 지정되지 않음" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "문서가 없습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "이미지가 없습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "드롭 인 위치가 없습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "레코드가 없습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "픽토드램을 찾을 수 없습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "없음" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "일반" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "번호가 지정된 목록" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo 편집기 테스트" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "사용자 정의 SCSS 파일 전용" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "페이지 SCSS 파일 전용" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "화면 전용" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "새 탭에서 열기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "새 창으로 열기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "최적화" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "원본(최적화되지 않은, 크기 조정되지 않은) 첨부 파일" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "출처" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "외곽선" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "윤곽선 + 둥근 모서리" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "패딩" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "페이지 옵션" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "문단 블록" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "URL로 붙여넣기" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "패턴" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "영역" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "미리보기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "기본" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "품질" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "인용" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb 연락처 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb 날짜 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb 날짜시간 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb 기간 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb 부동 소수점 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb HTML 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb 이미지 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb 정수 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb 다대일 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb 통화 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb 관련 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb 선택 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb 텍스트 필드" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb qweb 필드" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "방사형" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "읽기 전용 필드" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "사용자가 미디어를 클릭하면 다른 곳으로 이동합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "제거 (삭제)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "블록 제거" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "현재 단계 삭제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "링크 삭제" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "선택한 색상 제거" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "열 삭제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "서식 삭제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "링크 삭제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "%s 이름 바꾸기" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "패턴 반복" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "대체" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "미디어 바꾸기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "초기화" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "이미지 초기화" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "사이즈 재설정" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "자르기 재설정" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "변환 초기화" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "화면 재설정은 아직 지원되지 않습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "기본 크기로 조정" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "전체 크기 조정" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "절반으로 크기 조정" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "사분의 일 크기로 조정" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "오른쪽" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "왼쪽으로 회전" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "오른쪽으로 회전" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "행" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS 파일 : %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "채도" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "저장" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "저장 및 설치" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "저장 및 다시 불러오기" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "기록 저장" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "문서 검색" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "그림 문자 검색" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "이미지 검색" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "블록 검색 (예. 숫자, 이미지 월, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "기록 검색..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "추가 검색..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "검색하여 더 많은 기록 표시" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "2차" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "페이지에서 블록을 선택하여 스타일을 지정할 수 있습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "미디어 선택" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "구분자" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "세피아" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "서버 오류" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "그림자" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "모양" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "도형: 원" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "도형: 둥근형" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "도형: 섬네일" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "최적화된 이미지 보기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "서명" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "사이즈" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "사이즈 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "사이즈 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "사이즈 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "사이즈 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "사이즈 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "작게" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "작은 섹션의 제목입니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "고체" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "입체" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "해당 영역은 추가 권한을 가진 사용자에 의해 수정되었으므로, 수정하실 수 없습니다." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "스페셜" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "구조" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "스타일" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "제안" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "방향 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "텍스트 방향을 전환합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "표" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "테이블 옵션" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "서식 ID : %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "문자" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "글꼴 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "텍스트 정렬" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "텍스트 스타일" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL이 작동하지 않는 것 같습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL이 유효한 것 같습니다." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "날짜 시간 %s이 형식 %s과 일치하지 않습니다" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "문서가 이미 모델 %r, 필드 %r에 대해 다른 기록을 가지고 있는 id %r로부터 저장되었습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "제공된 URL이 지원되는 동영상을 참조하지 않습니다" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "입력하신 URL이 유효하지 않습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "입력하신 URL이 유효하지 않습니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"데이터베이스의 버전이 사용됩니다.\n" +" 변경 내용을 유지하려면 아래 내용을 복사하여 새 문서로 편집하세요." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "테마" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "테마 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "사용 중인 버전과 데이터베이스의 버전이 충돌됩니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "URL이 유효하지 않습니다. 미리보기를 업데이트할 수 없습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "해당 블록은 최신 버전이 아닙니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "이 문서는 저장되지 않았습니다!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "이 파일은 공개용 보기 첨부 파일입니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "이 파일은 현재 레코드에 첨부됩니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "이 이미지는 외부 이미지입니다" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"이 유형의 이미지는 자르기를 할 수 없습니다.
이미지 자르기를 하려면 먼저 원본 소스를 다운로드한 후 Odoo에 업로드하십시오." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "제목" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "제목 태그" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "변경하시려면, 먼저 이 블록을 삭제하고 최근 버전의 새 옵션을 사용하세요." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "스니펫을 저장하려면, 이전에 수정한 내용을 모두 저장하고 페이지를 다시 불러오기 해야 합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "할 일" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "굵게 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "체크리스트 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "아이콘 회전 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "이탤릭체 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "주문 목록 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "취소선 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "밑줄 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "정렬되지 않은 목록 전환" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "툴팁" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "체크리스트를 활용하여 작업을 추적합니다." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "변환" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "사진 변환하기" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "그림 변환 (변환을 재설정하려면 두 번 클릭)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "번역" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "투명한 색상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "다른 키워드로 검색해 보세요." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "유형" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "명령어로 \"/\"를 입력하세요" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL 또는 이메일" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "정렬 해제" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "뜻밖의" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "문서 업로드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "이미지 업로드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "해당 이미지는 지원되지 않는 형식입니다. 다른 형식의 파일로 시도해보세요:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "해당 이미지는 지원되지 않는 형식입니다. 다음 형식의 파일로 시도해보세요: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "동영상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "동영상 서식" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "동영사 코드" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "동영상" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "자동 재생이 활성화되면 동영상이 음소거됩니다." + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "화면" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "화면 및 에셋 번들" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "비메오" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "경고: 이 대화 상자를 닫으면 작업 중이던 버전은 삭제되며, 더 이상 사용할 수 없게 됩니다." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "물결 모양" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "웹 편집기 변환기 하위 테스트" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "웹 편집기 변환기 테스트" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "위젯" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "폭" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "내용 입력..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "예" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "화면 왼쪽 상단에 있는 버튼으로 문서를 업로드할 수 있습니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "화면 왼쪽 상단에 있는 버튼으로 이미지를 업로드할 수 있습니다." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "첨부 파일을 만들려면 데이터 또는 url을 지정해야 합니다." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "유튜브" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "확대" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "축소" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "추가" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "및" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "자동" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "어둡게" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "기본값" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "예외" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "밝게" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "곱하기" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "오버레이" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "화면" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "동영상" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "웹소켓 메시지 처리" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lb.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lb.po new file mode 100644 index 0000000..25a765f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lb.po @@ -0,0 +1,2019 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-13 11:28+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_optimize_dialog.js:0 +#, python-format +msgid "%d (Original)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_optimize_dialog.js:0 +#, python-format +msgid "%d (Suggested)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Action" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media_dialog.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#, python-format +msgid "Add as document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#, python-format +msgid "Add as image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Add document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Add image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Assign a focal point that will always be visible" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Background Image Sizing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Changing the quality is not supported for images of type" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/summernote.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Click in the page to customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/crop_dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/crop_dialog.js:0 +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Custom Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/crop_dialog.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/dialog.js:0 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_assets__display_name +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "File / Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/crop_dialog.js:0 +#, python-format +msgid "Free" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Give a relevant name to your file to optimize search engine results." +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Help" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_assets__id +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/editor.js:0 +#, python-format +msgid "" +"If you discard the current edition, all unsaved changes will be lost. You " +"can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"If you edit and save this file, you will never receive updates from Odoo " +"anymore unless you reset your customizations." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"If you want to crop it, please first download it from the original source " +"and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Image Preview" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_optimize_dialog.js:0 +#, python-format +msgid "Improve your Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Instagram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_optimize_dialog.js:0 +#, python-format +msgid "Keep Original" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_assets____last_update +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_dialog.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +#, python-format +msgid "Name" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_optimize_dialog.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Optimize" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Options" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Or choose a preset:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline-Rounded" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Quality" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Quick Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reduce the quality as much as possible to increase performance." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reduce the size as much as possible to increase performance." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Remove" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Resizing is not supported for images of type" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rounded" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/crop_dialog.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Search" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media_dialog.js:0 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"The URL contains an image. The file will be added in the image section." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"The URL does not contain any image. The file will be added in the document " +"section." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/media.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/editor.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "This reduces the quality to increase performance." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "This type of image is not supported for cropping." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "Translation" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Vine.co" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Width" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:0 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"You cannot change the quality, the width or the name of an URL attachment." +msgstr "" + +#. module: web_editor +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "https://www.odoo.com/logo.png" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "https://www.odoo.com/mydocument" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "videos" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lo.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lo.po new file mode 100644 index 0000000..f3d7ad1 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lo.po @@ -0,0 +1,3423 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2023 +# Phoxaysy Sengchanthanouvong , 2023 +# ສີສຸວັນ ສັງບົວບຸລົມ , 2023 +# sackda chanthasombath, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: sackda chanthasombath, 2025\n" +"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "ເພີ່ມເຂົ້າ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "ທັງໝົດ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "ກະດູມ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "ຍົກເລີກ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "ປິດອອກ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "ລະຫັດ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "ຢືນຢັນ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "ສ້າງ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "ສ້າງໂດຍ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "ສ້າງເມື່ອ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "ຄ່າເລີ່ມຕົ້ນ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "ລຶບ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "ຄຳອະທິບາຍ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "ປະລະ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "ຊື່ເຕັມ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "ເອກະສານ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ເລກລຳດັບ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "ຮູບພາບ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "ປັບປຸງລ້າສຸດໂດຍ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "ປັບປຸງລ້າສຸດເມື່ອ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "ລາຍການ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "ປານກາງ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "ຊື່" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "ທຳມະດາ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "ບັນທຶກ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "ຫົວເລື່ອງ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "ປະເພດ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "ເບຶ່ງ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lt.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lt.po new file mode 100644 index 0000000..0f975bb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lt.po @@ -0,0 +1,3444 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Aleksandr Jadov , 2022 +# UAB "Draugiški sprendimai" , 2022 +# Antanas Muliuolis , 2022 +# Jonas Zinkevicius , 2022 +# Silvija Butko , 2022 +# Rytis Štreimikis , 2022 +# Arminas Grigonis , 2022 +# Arunas V. , 2022 +# Naglis Jonaitis, 2022 +# Linas Versada , 2022 +# digitouch UAB , 2022 +# Martin Trigaux, 2023 +# Aurelija Vitkauskiene, 2024 +# Ramunė ViaLaurea , 2024 +# Wil Odoo, 2025 +# Jessica Jakara, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Jessica Jakara, 2025\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"\"ALT žyma\" parodo alternatyvų tekstą paveikslėliui, jei jis negali būti " +"rodomas (lėtas ryšys, trūkstamas paveikslėlis, ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"\"Title žyma\" rodoma kaip paaiškinimas, kai užvedate pelę ant paveikslėlio." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT žyma)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE žyma)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL arba Embed kodas)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Įvyko serverio klaida. Įsitikinkite, ar teisingai prisijungėte ir ar saugote" +" failą tinkamu formatu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Apie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Priima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Pridėti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Pridėti stulpelį" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Pridėti eilutę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Pridėti nuorodą" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Pridėti stulpelį kairėje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Pridėti stulpelį dešinėje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Pridėti viršuje eilutę " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Pridėti eilutę apačioje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Įspėjimas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Lygiuoti centre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Lygiuoti kairėje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Lygiuoti dešinėje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Lygiavimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Visi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Visos nuotraukos įkeltos" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Kampas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animacinis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anoniminis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Taikyti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Ar tikrai norite ištrinti šį fragmentą: %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Kraštinių santykis" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Prisegtukas" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Prisegtuko URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automatinis paleidimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fonas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Fono spalva" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Bazė" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Žemiau" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokuoti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Pusjuodis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Kraštinė" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Mygtukas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Atsargiai!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centravimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Keisti medijos aprašymą ir paaiškinimą" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Uždaryti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kodas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Spalva" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Spalvų filtras" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Spalvos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Stulpelis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Bendros spalvos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Patvirtinti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Patvirtinimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Nukopijuokite savo URL arba embed kodą čia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Viršelis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Sukurti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Kirpti paveikslėlį" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Nestandartinis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Brūkšniuotas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Numatytasis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Trinti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Aprašymas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Įrenginiai" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Atmesti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumentai" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Taškuotas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dvigubas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Norėdami redaguoti, spustelėkite dukart" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Kopijuoti konteinerį" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Numatomas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtras" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Plokščias" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Apversti horizontaliai" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Apversti vertikaliai" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Šrifto spalva" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formatas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Visas ekranas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP nukreipimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Antraštė 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Antraštė 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Antraštė 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Antraštė 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Antraštė 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Antraštė 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Aukštis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Slėpti Dailymotion logotipą" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Slėpti pilno ekrano mygtuką" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Slėpti grotuvo valdymą" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Slėpti dalijimosi mygtuką" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Piktograma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Jei atstatysite šį failą, visi pakeitimai bus prarasti ir jis bus atstatytas" +" į standartinį failą." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Paveikslėlis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Paveikslėliai" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Diegti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Didelis" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Kairė" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Tiesinis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Eilutės" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Nuoroda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Nuorodos žyma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Nuoroda į" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Sąrašas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Rodyti daugiau...." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Ciklas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Vidutinis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nieko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Įprastas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Atidaryti naujame lange" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Kontūras" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Užpildymas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pareigos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Peržiūra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Pirminis" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kokybė" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citata" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "QWEB" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "QWEB laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "QWEB kontakto laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "QWEB lauko data" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "QWEB lauko data ir laikas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "QWEB trukmės laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "QWEB pozicijos laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "QWEB HTML laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "QWEB lauko paveikslėlis" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "QWEB skaičiaus laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "QWEB sąryšio laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "QWEB pasirinkimo laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "QWEB teksto laukas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "QWEB QWEB laukas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Tik skaitomas laukas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Pašalinti bloką" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Pakeisti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Atstatyti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Atkurti paveikslėlį" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Vaizdų atstatymas dar nėra palaikomas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Keisti į pilną dydį" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Keisti į pusę dydžio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Keisti į ketvirtį dydžio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Dešinė" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Pasukti į kairę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Pasukti į dešinę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS failas: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Išsaugoti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Išsaugoti ir atnaujinti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Serverio klaida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Šešėlis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatūra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Parašas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Dydis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Mažas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Vientisas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktūra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stilius" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Siūlymai" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Lentelė" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Šablono ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekstas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Pateikta nuoroda neveda į jokį palaikomą vaizdo įrašą" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Pateikta nuoroda nėra tinkama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Temos spalvos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Šis dokumentas neišsaugotas!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Šis paveikslėlis yra išorinis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Pavadinimas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Paaiškinimas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transformuoti paveikslėlį (spustelėkite dukart, kad atšautumėte " +"transformaciją)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Versti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL arba el. paštas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Nenumatomas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Įkelti paveikslėlį" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Vaizdo įrašo kodas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Peržiūrėti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "WEB redaktoriaus keitimo potestis" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "WEB redaktoriaus keitimo testas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Plotis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Parašykite ką nors..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Taip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Priartinti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Atitolinti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "ir" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "vaizdo įrašai" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lv.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lv.po new file mode 100644 index 0000000..89dd946 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/lv.po @@ -0,0 +1,3428 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Aivenho , 2022 +# Anzelika Adejanova, 2022 +# JanisJanis , 2022 +# Arnis Putniņš , 2022 +# Martin Trigaux, 2023 +# ievaputnina , 2024 +# Will Sensors, 2025 +# Armīns Jeltajevs , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Armīns Jeltajevs , 2025\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr " Bloki " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr " Pielāgot " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Pievienot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Pievienot rindu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Brīdinājums" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Izlīdzināšana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Visi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonīms" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Pielietot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Pielikums" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Attachment URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fons" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Fona krāsa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Bāze" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Pamata bloki" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloķēt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Poga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Atcelt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Aizvērt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kods" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Krāsa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Krāsas filtrs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Krāsas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Apstiprināt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Apstiprināšana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopēt saiti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Nosegt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Izveidot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Pielāgots" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Noklusētais" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Izdzēst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Apraksts" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Iekārtas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Atmest" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Atmet ierakstu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Parādīt vārdu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Aizpildīt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtrs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formatēt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP maršrutēšana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Augstums" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Attēls" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Attēla augstums" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Attēla avots" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Attēla platums" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Teksts" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Install" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Large" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz mainīts" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunoja" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunots" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Left" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineāra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Rindas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Saite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Saraksts" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Vidējs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nosaukums" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigācija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Numurs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nav" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Standarta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Amats" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Priekšskatīt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Izšķirtspēja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Piedāvājums" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Aizstāt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Atstatīt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Right" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Saglabāt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Saglabāt ierakstu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signature" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Izmērs" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Small" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktūra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stils" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Ieteikumi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabula" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Teksts" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tēma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Tēmas krāsas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Nosaukums" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Uzdevumi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Pārveidot attēlu (noklikšķiniet divreiz, lai atiestatītu pārveidošanu)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Translate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Veids" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Skatīt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Platums" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Rakstīt ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Jā" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "and" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mk.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mk.po new file mode 100644 index 0000000..7aa5826 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mk.po @@ -0,0 +1,1527 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Aleksandar Vangelovski , 2016 +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-07-08 16:00+0000\n" +"Last-Translator: Aleksandar Vangelovski \n" +"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/" +"mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:900 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:338 +#, python-format +msgid "(Youtube, Vimeo, Dailymotion)" +msgstr "(Youtube, Vimeo, Dailymotion)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:952 +#, python-format +msgid "Action" +msgstr "Акција" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:224 +#, python-format +msgid "Add" +msgstr "Додади" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:221 +#, python-format +msgid "Add an image URL" +msgstr "Додади адреса на слика" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:934 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:933 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:935 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:209 +#, python-format +msgid "Alternate Upload" +msgstr "Алтернативно прикачување" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "" +"Assigning a focal point to ensure that the targeted area will be always " +"visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "Адреса за прикачување" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Auto Resize" +msgstr "Автоматски промени ја големината" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:359 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:941 +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Background Color" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:461 +#, fuzzy, python-format +msgid "Background Image Options" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:100 +#, fuzzy, python-format +msgid "Background height" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, fuzzy, python-format +msgid "Background position" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:132 +#, fuzzy, python-format +msgid "Background repeat" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:88 +#, fuzzy, python-format +msgid "Background size" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:91 +#, fuzzy, python-format +msgid "Background width" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:404 +#, python-format +msgid "Basic" +msgstr "Основно" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:8 +#, python-format +msgid "Block style" +msgstr "Стил на прозор" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:861 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:293 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:127 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:301 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Click on the picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:950 +#: code:addons/web_editor/static/src/xml/translator.xml:16 +#, python-format +msgid "Close" +msgstr "Затвори" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:912 +#, python-format +msgid "Code" +msgstr "Код" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:927 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:396 +#, python-format +msgid "Color Style" +msgstr "Стил на боја" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:37 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:36 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:38 +#, fuzzy, python-format +msgid "Custom" +msgstr "Персонализирај" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Customize" +msgstr "Персонализирај" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:424 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Danger" +msgstr "Опасност" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/summernote.js:1920 +#: code:addons/web_editor/static/src/xml/editor.xml:444 +#, python-format +msgid "Default" +msgstr "Стандардно" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:136 +#: code:addons/web_editor/static/src/xml/editor.xml:304 +#, fuzzy, python-format +msgid "Description" +msgstr "Отфрли уредување" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:465 +#: code:addons/web_editor/static/src/xml/editor.xml:7 +#: code:addons/web_editor/static/src/xml/editor.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:187 +#: code:addons/web_editor/static/src/xml/editor.xml:250 +#: code:addons/web_editor/static/src/xml/editor.xml:292 +#, python-format +msgid "Discard" +msgstr "Отфрли" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:285 +#, python-format +msgid "Discard edition" +msgstr "Отфрли уредување" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:154 +#, python-format +msgid "Document" +msgstr "Документ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:954 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:768 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:881 +#, python-format +msgid "Drag an image here" +msgstr "Повлечи и пушти слика тука" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:35 +#, python-format +msgid "Drag to Move" +msgstr "Повлечи да преместиш" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:36 +#, python-format +msgid "Duplicate Container" +msgstr "Дупликат контејнер" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:190 +#: code:addons/web_editor/static/src/js/rte.summernote.js:890 +#, python-format +msgid "Edit" +msgstr "Уреди" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Embed Video (HTML)" +msgstr "Вградено видео (HTML)" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:44 +#, python-format +msgid "English" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:43 +#, python-format +msgid "English (edit mode)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:436 +#, python-format +msgid "Extra Small" +msgstr "Екстра мало" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:878 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:880 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:879 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:942 +#, fuzzy, python-format +msgid "Font Color" +msgstr "Боја на позадина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:869 +#, python-format +msgid "Font Family" +msgstr "Фонт фамилија" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:870 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:926 +#, python-format +msgid "Full Screen" +msgstr "Цел екран" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "HTTP рутирање" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:913 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:914 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:915 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:916 +#, python-format +msgid "Header 4" +msgstr "Заглавие 4" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:917 +#, python-format +msgid "Header 5" +msgstr "Заглавие 5" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:918 +#, python-format +msgid "Header 6" +msgstr "Заглавие 6" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:925 +#, python-format +msgid "Help" +msgstr "Помош" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "If you discard the current edition," +msgstr "Ако ја отфрлите моменталната едиција" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:153 +#, python-format +msgid "Image" +msgstr "Слика" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:883 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:932 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:416 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Info" +msgstr "Информација" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:906 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:874 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:888 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:898 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:862 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:936 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:949 +#, python-format +msgid "Keyboard shortcuts" +msgstr "Кратенки на тастатура" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:145 +#: code:addons/web_editor/static/src/xml/editor.xml:448 +#, python-format +msgid "Large" +msgstr "Големо" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:868 +#, python-format +msgid "Line Height" +msgstr "Висина на ставка" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:887 +#: code:addons/web_editor/static/src/xml/editor.xml:400 +#, python-format +msgid "Link" +msgstr "Врска" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:371 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:366 +#, python-format +msgid "Link to" +msgstr "Поврзи со" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:144 +#, python-format +msgid "Medium" +msgstr "Средно" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:940 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:163 +#, python-format +msgid "Next →" +msgstr "Следно →" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:135 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:142 +#: code:addons/web_editor/static/src/xml/snippets.xml:51 +#, python-format +msgid "None" +msgstr "Ништо" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:910 +#, python-format +msgid "Normal" +msgstr "Нормално" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.layout +msgid "Odoo Editor layout" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/snippets.options.js:464 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:893 +#: code:addons/web_editor/static/src/xml/editor.xml:381 +#, python-format +msgid "Open in new window" +msgstr "Отвори во нов прозорец" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:922 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:931 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:149 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:930 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:953 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:155 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:873 +#, python-format +msgid "Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:341 +#: code:addons/web_editor/static/src/xml/editor.xml:347 +#: code:addons/web_editor/static/src/xml/editor.xml:458 +#, python-format +msgid "Preview" +msgstr "Преглед" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:412 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Primary" +msgstr "Примарно" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:911 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.js:343 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:939 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:958 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:194 +#, python-format +msgid "Remove" +msgstr "Одстрани" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:37 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:867 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:884 +#, python-format +msgid "Remove Image" +msgstr "Одстрани слика" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:75 +#, python-format +msgid "Repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:136 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:137 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:138 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:945 +#, python-format +msgid "Reset" +msgstr "Ресетирај" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/backend.xml:18 +#, python-format +msgid "Reset from source" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:946 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:25 +#, python-format +msgid "Resize" +msgstr "Промени големина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:875 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:876 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:877 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:8 +#: code:addons/web_editor/static/src/xml/editor.xml:26 +#: code:addons/web_editor/static/src/xml/editor.xml:185 +#, python-format +msgid "Save" +msgstr "Зачувај" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:47 +#, python-format +msgid "" +"Scale the image to be as large as it needs to fill the whole content area. " +"Part of the image may not be visible." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:70 +#, python-format +msgid "" +"Scale the image to the largest size such that both its width and height can " +"fit inside the content area" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:66 +#, python-format +msgid "Search" +msgstr "Барај" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:64 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:30 +#, python-format +msgid "Select Container Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:149 +#, python-format +msgid "Select a Media" +msgstr "Избери медиум" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:243 +#, python-format +msgid "Select a Picture" +msgstr "Изберете слика" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:882 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:339 +#, python-format +msgid "Set a video URL" +msgstr "Подеси адреса на видео" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:944 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:89 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:156 +#, python-format +msgid "Shadow" +msgstr "Сенка" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:432 +#, python-format +msgid "Size" +msgstr "Големина" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:143 +#: code:addons/web_editor/static/src/xml/editor.xml:440 +#, python-format +msgid "Small" +msgstr "Мало" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:164 +#, python-format +msgid "Spin" +msgstr "Спин" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:864 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:909 +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Style" +msgstr "Стил" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:865 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:408 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Success" +msgstr "Успех" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:866 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:903 +#, python-format +msgid "Table" +msgstr "Табела" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:951 +#, python-format +msgid "Text formatting" +msgstr "Форматирање на текст" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:891 +#, python-format +msgid "Text to display" +msgstr "Текст за приказ" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:268 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" +"Сликата не може да се избрише бидејќи е употребена во\n" +" следниве страни или погледи:" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:93 +#: code:addons/web_editor/static/src/js/translator.js:165 +#, python-format +msgid "This document is not saved!" +msgstr "Овој документ не ви е зачуван!" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:892 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:943 +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:384 +#, python-format +msgid "URL or Email Address" +msgstr "Веб или е-маил адреса" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:863 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:957 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:889 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:921 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:206 +#, fuzzy, python-format +msgid "Upload an image" +msgstr "Додади адреса на слика" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Upload image without optimization" +msgstr "Прикачете слика без оптимизација" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:217 +#, python-format +msgid "Uploading..." +msgstr "Качување..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:122 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:896 +#: code:addons/web_editor/static/src/xml/editor.xml:156 +#, python-format +msgid "Video" +msgstr "Видео" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:897 +#, python-format +msgid "Video Link" +msgstr "Видео врска" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:899 +#, python-format +msgid "Video URL?" +msgstr "адреса на видео" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:420 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Warning" +msgstr "Внимание" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:104 +#, python-format +msgid "Write Your Text Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor.js:108 +#, python-format +msgid "Write Your Text or Drag a Block Here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/rte.summernote.js:146 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:289 +#, python-format +msgid "You can cancel to return to the edition mode." +msgstr "Можете да откажете за да се вратите во мод за уредување." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "all" +msgstr "сите" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:94 +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#: code:addons/web_editor/static/src/xml/editor.xml:116 +#: code:addons/web_editor/static/src/xml/editor.xml:125 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "http://openerp.com" +msgstr "http://openerp.com" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:223 +#, python-format +msgid "http://openerp.com/logo.png" +msgstr "http://openerp.com/logo.png" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.прилог" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_barcode +msgid "ir.qweb.field.barcode" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "unknown" +msgstr "непознато" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:288 +#, python-format +msgid "unsaved changes will be lost." +msgstr "неснимените промени ќе бидат загубени." + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:220 +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "— or —" +msgstr "— или —" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:160 +#, python-format +msgid "← Previous" +msgstr "← Претходно" + +#~ msgid "Change..." +#~ msgstr "Промени..." + +#~ msgid "Insert Blocks" +#~ msgstr "Постави прозори" + +#~ msgid "Upload an image from your computer" +#~ msgstr "Прикачете слика од вашиот компјутер" + +#~ msgid "or" +#~ msgstr "или" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ml.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ml.po new file mode 100644 index 0000000..c7e6132 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ml.po @@ -0,0 +1,3422 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Nikhil Krishnan, 2023 +# Hasna , 2023 +# Niyas Raphy, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Niyas Raphy, 2025\n" +"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "ചേർക്കുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "മുന്നറിയിപ്പ്" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "കേന്ദ്രം വിന്യസിക്കുക" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "ഇടത് വിന്യസിക്കുക" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "വലത് വിന്യസിക്കുക" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "എല്ലാം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "അജ്ഞാതൻ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "അപ്ലൈ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "അറ്റാച്ച്മെന്റ്" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "പശ്ചാത്തലം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "പശ്ചാത്തല നിറം" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "പശ്ചാത്തല സ്ഥാനം" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "ബട്ടൺ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "റദ്ദാക്കുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "അടയ്ക്കുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "കോഡ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "കളർ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "നിറങ്ങൾ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "സ്ഥിരീകരിക്കുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "സ്ഥിരീകരണം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "ലിങ്ക് പകർത്തുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "ക്രീയേറ്റ്‌" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "ഉണ്ടാക്കിയത്" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "സൃഷ്ടിച്ചത്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "കസ്‌റ്റം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "ഡീഫോൾട്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "ഡിലീറ്റ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "വിവരണം" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "നിരസിക്കുക" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "ഡിസ്പ്ലേ നെയിം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "ഡോക്യുമെന്റ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "ഫിൽട്ടർ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "ഫ്ളിപ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "ഫോണ്ട് സൈസ് " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "ഫോർമാറ്റ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "ഫുൾ സ്ക്രീൻ " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "തലക്കെട്ട് 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "തലക്കെട്ട് 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "തലക്കെട്ട് 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "തലക്കെട്ട് 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "തലക്കെട്ട് 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "തലക്കെട്ട് 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "തലക്കെട്ട് 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "തലക്കെട്ട് 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "തലക്കെട്ട് 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "തലക്കെട്ട് 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "തലക്കെട്ട് 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "തലക്കെട്ട് 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "ഉയരം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "ഫുൾസ്ക്രീൻ ബട്ടൺ മറയ്ക്കുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ഐഡി" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "ഐക്കൺ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "ഐക്കൺസ് " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "ചിത്രം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "ഇൻസ്റ്റാൾ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "ലിങ്ക്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "ലിസ്റ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "മീഡിയ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "മീഡിയം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "പേര്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "ഇല്ല" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "നോർമൽ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "പ്രിവ്യൂ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "ക്വാളിറ്റി" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "റീസെറ്റ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "സേവ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "സെക്കൻഡറി" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "കയ്യൊപ്പ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "വലിപ്പം" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "ടെക്സ്റ്റ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "ടെക്സ്റ്റ് നിറം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "തീം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "തീം നിറം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "തലക്കെട്ട്" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "ടൈപ്പ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "അപ്രതീക്ഷിതം" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "ഒരു ഡോക്യുമെന്റ് അപ്‌ലോഡ് ചെയ്യുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "ഒരു ചിത്രം അപ്‌ലോഡ് ചെയ്യുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "വീഡിയോ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "വീഡിയോ ഫോർമാറ്റിംഗ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "വീഡിയോ കോഡ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "വ്യൂ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "വിമിയോ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "വീതി" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "അതെ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "യൂട്യുബ്" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "വലുതാക്കുക" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "ചെറുതാകുക" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "വീഡിയോകൾ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mn.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mn.po new file mode 100644 index 0000000..2e93a28 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/mn.po @@ -0,0 +1,3429 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Batmunkh Ganbat , 2022 +# tserendavaa tsogtoo , 2022 +# Batmunkh Ganbat , 2022 +# Uuganbayar Batbaatar , 2022 +# Onii Onii , 2022 +# baaska sh , 2022 +# Otgonbayar.A , 2025 +# Martin Trigaux, 2025 +# hish, 2025 +# Baskhuu Lodoikhuu , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Baskhuu Lodoikhuu , 2025\n" +"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Нэмэх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URL нэмэх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Анхааруулга" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Эгнээ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Бүх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Хөдөлгөөнт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Зочин" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Хэрэгжүүлэх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Хавсралт" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Хавсралтын URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Автомат тоглох" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Дэвсгэр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Дэвсгэр өнгө" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Суурь" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Түгжих" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Бүдүүн" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Хүрээ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Хүрээний өнгө" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Хүрээний өргөн" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Товчлуур" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Цуцлах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Төвд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Медиагийн тайлбар болон багажны зөвлөмж" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Хаах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Дансны код" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Өнгө" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Өнгө" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Багана" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Түгээмэл өнгөнүүд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Батлах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Баталгаа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Холбоос хуулах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Нүүр царай" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Үүсгэх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Өөриймшсөн" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Зураасан шугам" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Үндсэн" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Устгах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Тайлбар" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Төхөөрөмжүүд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Үл хэрэгсэх" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Баримтууд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Цэг" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Давхар" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Засварлахдаа хоёр дарна уу" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Агуулагчийг хувилах" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Бөглөх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Шүүлт" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Үсэгний өнгө" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Формат" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Бүтэн дэлгэц" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Толгой 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Толгой 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Толгой 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Толгой 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Толгой 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Толгой 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Өндөр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Дүрс" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Зураг" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Зургын өндөр" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Зураг" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Суулгах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Том" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Зүүн" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Шугаман" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Мөрүүд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Линк" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Холбоосын шошго" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Холбоос" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Жагсаалт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Дундаж" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Нэр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Үгүй" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Байхгүй" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Хэвийн" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Шинэ цонхонд нээх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Гүйцээлт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Албан тушаал" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Урьдчилан харах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Үндсэн" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Чанар" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Хашилт" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb талбартай холбоо тогтоох" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb талбарын зураг" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Зөвхөн унших талбар" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Блокийг устгах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Солих" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Сэргээх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Дүүрнээр хэмжээ өөрчлөх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Хагасаар хэмжэг өөрчлөх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "1/4-р хэмжээг өөрчлөх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Баруун" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Хадгалах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Хоёрдугаар" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Түсгаарлагч" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Серверийн алдаа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Сүүдэр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Хэлбэр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Гарын үсэг" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Хэмжээ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Жижиг" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Бүтэц" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Загвар" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Санал болголт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Хүснэгт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Үлгэр ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Текст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Загвар" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Арьсны өнгө" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Энэ баримт хадгалагдаагүй!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Гарчиг" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Багажны зөвлөмж" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Зургийг хувиргах (хувиргалтыг арилгахын тулд хоёр дахин товшино уу)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Орчуулга" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Төрөл" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Баримт байршуулах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Зураг ачааллах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Видеонууд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Харах" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Өргөн" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Ямар нэг зүйл бичнэ үү..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Тийм" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "нэмэх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "ба" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "авто" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "анхны утга" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ms.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ms.po new file mode 100644 index 0000000..4c0566b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ms.po @@ -0,0 +1,3394 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Niyas Raphy, 2022 +# Mehjabin Farsana, 2023 +# Imran Pathan, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Imran Pathan, 2024\n" +"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ms\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Tambah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Semua" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Mohon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Lampiran" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Pangkalan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Butang" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Batal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Tutup" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Warna" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Sahkan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Pengesahan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Buat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Dicipta oleh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Dicipta pada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Lalai" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Padam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Penerangan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Buang" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nama paparan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Benamkan Imej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Dijangka" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Gambar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Pasang" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Besar" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Terakhir Diubah suai pada" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Kemas Kini Terakhir oleh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Kemas Kini Terakhir pada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Lines" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Sederhana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Tidak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "None" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Biasalah" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Preview" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kualiti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Save" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Bayang" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Bentuk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Tandatangan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Saiz" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Kecil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Padat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Pepejal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Istimewa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Gaya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Teks" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Tajuk" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Cuba cari dengan kata kunci lain." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "taip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Lihat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "ya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nb.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nb.po new file mode 100644 index 0000000..48573a3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nb.po @@ -0,0 +1,3435 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Mads Søndergaard, 2022 +# Aleksander, 2022 +# Marius Stedjan , 2022 +# Lars Aam , 2022 +# Cécile Collart , 2022 +# Thor Arne Hvidsten , 2022 +# Henning Fyllingsnes, 2023 +# Martin Trigaux, 2025 +# Rune Restad, 2025 +# Jorunn D. Newth, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Jorunn D. Newth, 2025\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt'-etiketten spesifiserer en alternativ tekst for et bilde, om bildet " +"ikke kan vises (treg oppkobling, manglende bilde, skjermleser ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'Title'-etiketten vises som et verktøytips når du holder over bildet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Etikett)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Etikett)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL eller embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolonner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"En serverfeil oppstod. Forsikre deg om at du er logget inn og at filen du " +"lagrer er korrekt formatert." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Godtar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Legg til" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Varsel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Justering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Alle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonym" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Bruk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Størrelsesforhold" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Ressursverktøy" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Vedlegg" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL til vedlegg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automatisk avspilling" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Bakgrunn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Bakgrunnsfarge" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokker" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Halvfet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Ramme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Grensefarge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Knapp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Kanseller" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Forsiktig!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Midtstill" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Endre beskrivelse og hjelpetekst for media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Sjekkliste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Lukk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Farge" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Farger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolonne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Vanlige farger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Bekreft" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Bekreftelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Lim inn URL eller embed-kode her" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Forside" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Opprett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Beskjær bilde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Tilpasset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "DailyMotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Stiplet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Standard" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Slett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Beskrivelse" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Enheter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Avbryt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Prikket" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dobbel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Dobbeltklikk for å redigere" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Dupliser beholder" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Forventet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Fyll farge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Flat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Vend horisontalt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Vend vertikalt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Fontfarge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Font størrelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Fullskjerm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-ruting" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Overskrift 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Overskrift 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Overskrift 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Overskrift 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Overskrift 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Overskrift 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Høyde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Skjul DailyMotion-logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Skjul fullskjerm-knapp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Skjul spillerkontroller" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Skjul deleknapp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikoner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Hvis du tilbakestiller denne filen, vil du miste alle tilpasninger, da den " +"vil bli tilbakestilt til originalfilen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Bilde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Bilde høyde" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Bilde kilde" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Bilde bredde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Bilder" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Stor" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Venstre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineær" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Linjer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Linketikett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Link til" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Liste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Flytt venstre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Flytt høyre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Navn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nei" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ingen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Åpne i nytt vindu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Opprinnelig (ikke optimalisert, ikke endret størrelse på) vedlegg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Omriss" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Polstring" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Stilling" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Forhåndsvisning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primær" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvalitet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Sitat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb-felt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb-felt Kontakt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb-felt Dato" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb-felt Datotid" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb-felt Varighet" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb-felt Desimaltall" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb-felt HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Felt-bilde" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb-felt Heltall" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb-felt Mange til én" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb-felt Relativ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb-felt Utvalg" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb-felt Tekst" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb-felt qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Skrivebeskyttet felt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Fjern blokk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Fjern link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Erstatt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Tilbakestill" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Nullstill bilde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Tilbakestilling av visninger er ikke støttet enda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Endre størrelse full" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Endre størrelse halv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Endre størrelse kvart" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Høyre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Roter til venstre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Roter til høyre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS-fil: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Lagre" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekundær" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Skilletegn" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Serverfeil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Skygge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Form" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signatur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Størrelse" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Liten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Mal-ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Tekstfarge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Den oppgitte URLen refererer ikke til en støttet video" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Den oppgitte URLen er ikke gyldig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Temafarger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dokumentet er ikke lagret!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Dette er et eksternt bilde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Tittel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Hjelpetekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Omform bildet (klikk to ganger for å tilbakestille)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Oversett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Type" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL eller e-postadresse" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Uventet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Last opp et dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Last opp bilde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Videokode" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videoer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Vis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Bredde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Skriv noe..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "YouTube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zoom inn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zoom ut" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "og" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "skjerm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videoer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "Håndtering av WebSocket-meldinger" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nl.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nl.po new file mode 100644 index 0000000..3662c99 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/nl.po @@ -0,0 +1,3465 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2023 +# Erwin van der Ploeg , 2023 +# Jolien De Paepe, 2023 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Origineel)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Aanbevolen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' specificeert een alternatieve tekst voor een afbeelding, als de " +"afbeelding niet kan worden weergegeven (bij een trage verbinding, " +"ontbrekende afbeelding, schermlezer, ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Title tag' wordt weergegeven als een tooltip wanneer je met je muis over de" +" afbeelding beweegt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL of ingesloten)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolommen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 sterren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 kolommen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 kolommen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 sterren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "J" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blokken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Aanpassen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Er heeft zich een serverfout voorgedaan. Controleer of je correct bent " +"aangemeld en dat het bestand dat je bewaard hebt correct geformatteerd is." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Bovenstaand" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Toegestaan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Kolom toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Rij toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URL toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Een blokcitaat sectie toevoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Een knop toevoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Een code sectie toevoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Een kolom links toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Een kolom rechts toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Een link toevoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Een rij hierboven toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Een rij hieronder toevoegen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Luchtig & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Waarschuwing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Centreren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Links uitlijnen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Rechts uitlijnen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Uitlijning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Alle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Alle SCSS bestanden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Alle documenten zijn geladen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Alle afbeeldingen zijn geladen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt-tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Hoek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Geanimeerd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anoniem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Toepassen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Ben je zeker dat je de snippet wilt verwijderen?: %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Ben je zeker dat je dit bestand wilt verwijderen?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Aspectratio" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Componenten tools" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Bijlage" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Bijlage URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automatisch omvormen naar relatieve link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Automatisch afspelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Terug naar één kolom." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Achtergrond" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Achtergrondkleur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Achtergrond positie" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Basis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Basisblokken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Basisprincipes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Onderstaand" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Grote sectiekop." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blokken & regenachtig" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Vervagen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Vet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Rand" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Randkleur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Randstijl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Randdikte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Helderheid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Opsomming" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Knop" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Voorzichtig!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centreren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Wijzig media omschrijving en tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checklist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Kies een record..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Sluiten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Kleur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Kleurfilter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Kleuren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Algemene kleuren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Bevestigen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Bevestiging" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflict op inhoud" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Omzetten naar 2 kolommen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Omzetten naar 3 kolommen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Omzetten naar 4 kolommen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Link kopiëren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopieer-plak je URL of je insluitcode hier" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Kan module %s niet installeren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Kon het bestand \"%s\" niet laden." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Omslag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Aanmaken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Lijst met nummering maken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Lijst met opsommingstekens maken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Een URL maken." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Speciaal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Aangepast %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Gestippeld" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Standaard" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Standaard + afgerond" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Een aangepast verloop definiëren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Verwijderen %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Huidige tabel verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Omschrijving" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Apparaten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Negeren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Record negeren" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Wil je de app %s installeren?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documenten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Gestippeld" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dubbel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Dubbelklikken om te bewerken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Bouwblok slepen en neerzetten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Container dupliceren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamische kleuren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamische placeholder" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "FOUT: kan geen download-URL's ophalen uit mediabibliotheek." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "Vroege vogel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Link bewerken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Afbeelding bewerken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Mediabeschrijving bewerken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Het bewerken van een ingebouwd bestand via deze editor wordt niet " +"aangeraden, omdat dit voorkomt dat deze wordt bijgewerkt tijdens toekomstige" +" app-upgrades." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Afbeelding insluiten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Youtube video insluiten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Afbeelding in het document insluiten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "YouTube-video in het document insluiten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Leeg citaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Verwacht " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Uitbreiden naar de dichtstbijzijnde hoek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Uitbreiden naar de dichtstbijzijnde kant" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Uitbreiden tot de verste hoek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Uitbreiden naar de verste kant" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Bestand is geüpload" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Vullen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Vullen + afgerond" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Opvulkleur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Eerste paneel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Vlak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexibel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Omdraaien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Horizontaal omdraaien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Verticaal omdraaien" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Zwevende vormen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Floats" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Lettertype kleur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Lettertype grootte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Om technische redenen kan dit blok hier niet worden neergezet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Opmaak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Volledig scherm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Krijg de perfecte afbeelding door te zoeken in onze bibliotheek met " +"auteursrechtvrije foto's en illustraties." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Verloop" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Koptekst 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Koptekst 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Koptekst 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Koptekst 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Koptekst 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Koptekst 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Kop 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Kop 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Kop 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Kop 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Kop 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Kop 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Hoogte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotion logo verbergen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Volledig-scherm knop verbergen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Afspeelknoppen verbergen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Deelknop verbergen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Icoon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Opmaak icoon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Icoon grootte 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Icoon grootte 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Icoon grootte 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Icoon grootte 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Icoon grootte 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Pictogrammen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Als je de huidige bewerkingen verwijdert, gaan alle niet opgeslagen " +"wijzigingen verloren. Je kunt annuleren om terug te keren naar de " +"bewerkingsmodus." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Als je dit bestand reset, gaan al je aanpassingen verloren aangezien het " +"wordt gereset naar het standaard bestand." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustraties" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Afbeelding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Afbeeldingsopmaak" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Hoogte afbeelding" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Afbeelding bron" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Breedte afbeelding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Afbeeldingsvulling" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Afbeeldingen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inktpot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Waardering van 3 sterren invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Waardering van 5 sterren invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Een tabel invoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Een video invoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Hierboven invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Een horizontale lijn invoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Een afbeelding invoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Hieronder invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Links invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Media invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Link invoegen of bewerken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Gepersonaliseerde inhoud invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Rechts invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Tabel invoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Je handtekening invoegen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installeren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Installeer %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installatie in behandeling" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Ongeldige veldwaarde voor %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Onzichtbare elementen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Item" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS bestand: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Groot" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Links" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineair" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Regels" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Link label" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link gekopieerd naar klembord." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Link naar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lijst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Laad meer..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Lus" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Hoofdkleur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketingtools" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Medium sectiekop." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Meer info over deze app." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Naar beneden verplaatsen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Naar links verplaatsen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Naar rechts verplaatsen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Naar boven verplaatsen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Mijn afbeeldingen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Naam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigatie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nee" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Geen URL opgegeven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Geen documenten gevonden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Geen afbeeldingen gevonden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Geen locatie om in te plaatsen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Geen records meer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Geen pictogrammen gevonden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Geen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normaal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Genummerde lijst" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Editor-tests" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Alleen aangepaste SCSS bestanden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Alleen pagina SCSS bestanden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Alleen weergaves" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "In een nieuw tabblad openen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "In een nieuw venster openen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Geoptimaliseerd" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Originele (niet geoptimaliseerd, grootte niet aangepast) bijlage" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Orginelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Uitlijning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Omtrek + afgerond" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Pagina opties" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Paragraaf blok." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Als URL plakken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Patronen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Positie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Voorbeeld" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primair" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Wat doet die pannenkoek, tabernakel?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Dat hij niet in Toronto is aangekomen" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Dat hij in Toronto zou aankomen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kwaliteit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citaat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb veld" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "QWeb veld contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb veld datum" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb veld datum en tijd" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb veld duur" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb veld float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb veld HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb veld afbeelding" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb veld integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb veld Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "QWeb veld monetair" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb veld gerelateerd" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb veld selectie" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb tekstveld" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb veld qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Schuin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Alleen lezen-veld" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Stuur de gebruiker ergens anders heen wanneer hij op de media klikt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Verwijderen (VERWIJDEREN)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Blok verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Huidige verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Link verwijderen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Geselecteerde kleur verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Kolommen verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Huidige kolom verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Huidige rij verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Opmaak verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Link verwijderen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Hernoem %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Patroon herhalen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Vervangen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Media vervangen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Resetten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Afbeelding resetten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Grootte resetten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Bijsnijden resetten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Transformatie resetten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Weergaven resetten is momenteel nog niet ondersteund" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Standaard formaat wijzigen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Volledig formaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Half formaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Kwart formaat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Rechts" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Links draaien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rechts draaien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Rij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS bestand: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Verzadiging" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Opslaan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Opslaan en installeren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Opslaan en opnieuw laden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Record opslaan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Document zoeken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Pictogram zoeken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Afbeelding zoeken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Blok zoeken (vb. cijfers, afbeeldingsmuur, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Records zoeken..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Zoek meer..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Zoeken om meer records weer te geven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secundair" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Selecteer een blok op je pagina om het op te maken." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Medium selecteren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Scheidingsteken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Server foutmelding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Schaduw" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Vorm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Vorm: Cirkel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Vorm: Afgerond" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Vorm: Miniatuur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Toon geoptimaliseerde afbeeldingen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Handtekening" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Grootte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Grootte 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Grootte 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Grootte 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Grootte 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Grootte 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Klein" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Kleine sectiekop." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Vast" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Effen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Iemand met geëscaleerde rechten heeft deze sectie eerder gewijzigd, je kunt " +"het dus niet zelf wijzigen." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Specials" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Structuur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stijl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Suggesties" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Richting omdraaien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Tekstrichting omdraaien" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Tabel Opties" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Tabel tools" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Sjabloon ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Tekstkleur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Tekst uitlijnen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Tekststijl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "De URL lijkt niet te werken." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "De URL lijkt geldig." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "De tijd en datum %s komen niet overeen met het formaat %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Het document was al opgeslagen van iemand met een andere geschiedenis voor " +"model %r, veld %r met id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "De opgegeven url bevat geen video die wordt ondersteund" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "De opgegeven URL is ongeldig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "De opgegeven url is niet geldig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"De versie uit de database wordt gebruikt.\n" +"Als je je wijzigingen wilt behouden, kopieer dan de onderstaande inhoud en bewerk het nieuwe document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Thema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Thema kleuren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Er is een conflict tussen jouw versie en die in de database." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Deze URL is ongeldig. De voorbeeld kan niet worden bijgewerkt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Dit blok is achterhaald" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dit document is niet opgeslagen!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Dit bestand is een openbare bijlage." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Dit bestand is gekoppeld aan het huidige record." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Deze afbeelding is een externe afbeelding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Dit type afbeelding wordt niet ondersteund voor bijsnijden.
Als je het " +"wilt bijsnijden, download het dan eerst van de originele bron en upload het " +"in Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Titellabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Om wijzigingen aan te brengen, verwijder je dit blok en gebruik je de nieuwe" +" opties in de laatste versie." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Om een fragment op te slaan, moeten we al je eerdere wijzigingen opslaan en " +"de pagina opnieuw laden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Vet inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Checklist inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Icoon draaien inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Cursief inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Geordende lijst inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Doorstrepen inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Onderstrepen inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Niet geordende lijst inschakelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Taken opvolgen met een checklist" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformeren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "De afbeelding transformeren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"De afbeelding transformeren (dubbelklik om de verandering te annuleren)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Vertalen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparante kleuren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Probeer te zoeken met andere trefwoorden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Type" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Typ \"/\" voor commando's" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL of e-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Uitlijning ongedaan maken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Onverwacht " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Document uploaden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Afbeelding uploaden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" +"Het formaat van de geüploade afbeelding wordt niet ondersteund. Probeer met:" +" " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" +"Het formaat van de geüploade afbeelding wordt niet ondersteund. Probeer met:" +" %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Video formatering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video's" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"Videos spelen af zonder geluid wanneer automatisch afspelen is ingeschakeld" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Weergeven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Weergaves en asset bundels" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Waarschuwing: na het sluiten van dit dialoogvenster wordt de versie waar je " +"aan werkte verwijderd en zal deze nooit meer beschikbaar zijn." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Golvend" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editor Converter Subtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor Converter Test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Breedte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Schrijf iets..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Je kunt documenten uploaden met de knop in de linkerbovenhoek van het " +"scherm." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Je kunt afbeeldingen uploaden met de knop in de linkerbovenhoek van het " +"scherm." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Je moet de data of URL ingeven om een bijlage aan te maken." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Je URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Inzoomen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Uitzoomen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "toevoegen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "en" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "verduisteren" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "standaard" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "uitsluiten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "verlichten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "vermenigvuldigen" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "overlay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "scherm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket berichtafhandeling" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.voorbeeld.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/no.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/no.po new file mode 100644 index 0000000..e177440 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/no.po @@ -0,0 +1,3392 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Lars Aam , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Lars Aam , 2023\n" +"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Kanseller" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pl.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pl.po new file mode 100644 index 0000000..0f829c1 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pl.po @@ -0,0 +1,3478 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Monika Motyczyńska , 2022 +# Jacek Michalski , 2022 +# Piotr Cierkosz , 2022 +# Paweł Michoń , 2022 +# Mariusz, 2022 +# Zdzisław Krajewski , 2022 +# Jaroslaw Kaczmarski, 2022 +# Andrzej Wiśniewski , 2022 +# Michał , 2022 +# Judyta Kaźmierczak , 2022 +# Grzegorz Grzelak , 2022 +# Dariusz Żbikowski , 2022 +# Karol Rybak , 2022 +# Tomasz Leppich , 2022 +# Wojciech Warczakowski , 2022 +# Grażyna Grzelak , 2022 +# Piotr Szlązak , 2022 +# Radosław Biegalski , 2022 +# Piotr Strebski , 2022 +# Łukasz Grzenkowicz , 2022 +# Marcin Młynarczyk , 2022 +# Paweł Wodyński , 2023 +# Maksym , 2023 +# Martin Trigaux, 2023 +# Tadeusz Karpiński , 2023 +# Wil Odoo, 2025 +# Marta Wacławek, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Marta Wacławek, 2025\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Oryginalna)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Sugerowana)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"\"Alt tag\" określa tekst alternatywny dla obrazka, w przypadku gdy nie może" +" być on wyświetlony (wolne połączenie internetowe, brakujący obraz, czytnik " +"ekranu...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "\"Tag tytułu\" jest wyświetlany jako tooltip po najechaniu na obrazek." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(Tag TYTUŁU)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL lub osadź)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolumny" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Gwiazdki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 kolumny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 kolumny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Gwiazdek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Bloki" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Dostosuj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Nastąpił błąd serwera. Proszę sprawdzić czy jesteś poprawnie zalogowany i " +"czy plik, który chcesz zapisać jest poprawnie sformatowany." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Nad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Akceptuje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Dodaj kolumnę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Dodaj wiersz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Dodaj link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Dodaj sekcję blockquote." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Dodaj przycisk." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Dodaj sekcję kodu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Dodaj kolumnę po lewej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Dodaj kolumnę po prawej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Dodaj link." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Dodaj wiersz nad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Dodaj wiersz pod" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Fale & Zygzaki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Ostrzeżenie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Wyśrodkuj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Wyrównaj do lewej" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Wyrównaj do prawej" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Wyrównanie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Wszystko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Wszystkie pliki SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Wszystkie dokumenty zostały załadowane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Wszystkie obrazki zostały załadowane" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Kąt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animowane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonimowo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Zastosuj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Czy na pewno chcesz usunąć fragment: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Czy na pewno chcesz usunąć ten plik?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Proporcje obrazu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Załącznik" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Adres załącznika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Automatycznie konwertuj na link względny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autoplay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Wróć do jednej kolumny." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Tło" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Kolor tła" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Pozycja tła" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Baza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Bloki podstawowe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Podstawy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Pod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Nagłówek dużej sekcji." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Plamki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokuj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Bloki & Krople" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Smuga" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Pogrubienie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Obramowanie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Kolor obramowania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Styl obramowania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Grubość obramowania" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Jasność" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Lista punktowana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Przycisk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Anuluj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Ostrożnie!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centrum" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Zmień opis mediów i etykietkę narzędzi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Lista kontrolna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Wybierz zapis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zamknij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Kolor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtr kolorów" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Kolory" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolumna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Wspólne kolory" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potwierdź" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Potwierdzenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Konflikt treści" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Przekształć w 2 kolumny." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Przekształć w 3 kolumny." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Przekształć w 4 kolumny." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Skopiuj Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Skopiuj i wklej tutaj swój adres URL lub kod do osadzania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Nie można zainstalować modułu %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Nie można załadować pliku \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Okładka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Utwórz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Utwórz listę numerowaną." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Utwórz prostą listę punktowaną." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Utwórz URL" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Utworzył(a)" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Data utworzenia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Przytnij obrazek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Własne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Własny %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Przerywany" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Domyślny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Domyślny + Zaokrąglony" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Zdefiniuj własny gradient." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Usuń" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Usuń %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Usuń bieżącą tabelę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Urządzenia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Odrzuć" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Odrzuć rekord" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Czy chcesz zainstalować aplikację %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Wykropkowany" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Podwójny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Kliknij dwukrotnie, aby edytować" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Przeciągnij i upuść blok budujący." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Zduplikuj pojemnik" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamiczne kolory" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamiczny element zastępczy" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"BŁĄD: nie można pobrać adresów URL pobierania z biblioteki multimediów." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "Wczesny ptak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Edytuj link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Edytuj obraz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Edytuj opis multimediów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Edytowanie wbudowanego pliku za pomocą tego edytora nie jest zalecane, " +"ponieważ uniemożliwi to jego aktualizację podczas przyszłych aktualizacji " +"aplikacji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Osadzanie obrazu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Osadzanie wideo Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Osadzenie obrazu w dokumencie." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Osadzenie filmu z youtube w dokumencie." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Pusty cytat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Spodziewany " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Przedłużenie do najbliższego rogu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Przedłużenie do najbliższego boku" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Rozszerzenie do najdalszego rogu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Rozszerzenie do najdalszego boku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Plik został przesłany" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Wypełniony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Wypełnienie + Zaokrąglenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Kolor wypełnienia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtr" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Pierwszy panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Płaskie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Elastyczność" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Odwróć" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Odwróć w poziomie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Odwróć w pionie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Pływające kształty" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Zmiennoprzecinkowe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Kolor czcionki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Rozmiar czcionki " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Z przyczyn technicznych blok ten nie może zostać tutaj usunięty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Pełny Ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Znajdź idealny obraz, przeszukując naszą bibliotekę zdjęć i ilustracji " +"wolnych od praw autorskich." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Nagłówek 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Nagłówek 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Nagłówek 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Nagłówek 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Nagłówek 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Nagłówek 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Nagłówek 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Nagłówek 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Nagłówek 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Nagłówek 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Nagłówek 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Nagłówek 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Wysokość" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Ukryj logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Ukryj przycisk pelengu ekranu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Ukryj elementy sterujące odtwarzacza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Ukryj przycisk udostępniania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formatowanie ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Rozmiar ikony 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Rozmiar ikony 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Rozmiar ikony 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Rozmiar ikony 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Rozmiar ikony 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Jeśli odrzucisz bieżące zmiany, zostaną one utracone. Możesz anulować, aby " +"powrócić do trybu edycji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Jeśli zresetujesz ten plik, wszystkie twoje dostosowania zostaną utracone, " +"ponieważ zostaną przywrócone do domyślnego pliku." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustracje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Obraz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatowanie obrazu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Wysokość Obrazu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Źródło Obrazu" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Szerokość Obrazu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Wypełnienie obrazu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Obrazy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Kałamarz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Tekst w linii" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Wstaw ocenę powyżej 3 gwiazdek." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Wstaw ocenę powyżej 5 gwiazdek." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Wstaw tabelę." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Wstaw wideo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Wstaw powyżej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Wstaw poziomy separator elementów." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Wstaw obraz." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Wstaw poniżej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Wstaw z lewej strony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Wstaw media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Wstawianie lub edytowanie łącza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Wstawianie spersonalizowanej zawartości" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Wstaw z prawej strony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Wstaw tabelę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Wstaw swój podpis." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instaluj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Zainstaluj %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Instalacja w trakcie" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Nieprawidłowa wartość pola dla %s:%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Niewidoczne elementy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Element" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Plik JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Duży" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Lewy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Liniowo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Pozycje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Etykieta łącza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link skopiowany do schowka." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Link do" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Załaduj więcej..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Pętla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Kolor główny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Narzędzia marketingowe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Kruk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Mediów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Średni nagłówek sekcji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Więcej informacji o tej aplikacji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Przesuń w dół" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Przesuń w lewo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Przesuń w prawo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Przesuń w górę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Moje obrazy" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nazwa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Nawigacja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Nie określono adresu URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nie znaleziono żadnych dokumentów." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nie znaleziono żadnych obrazów." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Brak lokalizacji, do której można wpaść" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Nie ma więcej rekordów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nie znaleziono piktogramów." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Brak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Zwykły" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Lista numerowana" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Testy Odoo Editor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Tylko niestandardowe pliki SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Tylko pliki SCSS strony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Tylko widoki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Otwórz w nowej karcie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Otwórz w nowym oknie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Zoptymalizowany" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Oryginalny załącznik (niezoptymalizowany, niezmniejszany)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Źródła" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Zarys" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Kontur + Zaokrąglony" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Margines wewnętrzny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opcje strony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Blok akapitu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Wklej jako adres URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Wzory" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Stanowisko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Podgląd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Podstawowy" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Jakość" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Cytat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Pole Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Kontakt pola QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Data pola Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Pole Qweb Data i godzina" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Czas trwania pola Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb Pole float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Pole HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Obraz pola Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb Pole całkowite" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Pole wiele do jednego" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Pole monetarne" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Pole względne" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb Wybór pola" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Pole tekstowe" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Pole qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Promieniowy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Pole tylko do odczytu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Przekieruj użytkownika w inne miejsce po kliknięciu multimediów." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Usuń (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Usuń blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Usuń bieżący" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Usuń odnośnik" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Usuń wybrany kolor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Usuń kolumny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Usuń bieżącą kolumnę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Usuń bieżący wiersz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Usuń format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Usuń odnośnik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Zmień nazwę %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Powtórz wzór" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Zamień" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Wymiana mediów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Zresetuj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Zresetuj Obraz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Zresetuj rozmiar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Resetuj kadr" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Resetowanie transformacji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Resetowanie widoków nie jest jeszcze obsługiwane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Zmień rozmiar domyślny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Zmień rozmiar pełny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Zmień rozmiar połowy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Zmień rozmiar ćwierci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Prawo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Obrót w lewo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Obrót w prawo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Wiersz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Plik SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Nasycenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Zapisz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Zapisz i zainstaluj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Zapisz i przeładuj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Zapisz rekord" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Wyszukiwanie dokumentu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Wyszukiwanie piktogramu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Wyszukiwanie obrazu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Szukaj wśród bloków (np. liczby, obrazy, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Wyszukiwanie rekordów..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Wyszukaj więcej..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Wyszukaj, aby wyświetlić więcej rekordów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Drugi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Wybierz blok na stronie, aby nadać mu styl." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Wybierz media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Błąd serwera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Cień" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Kształt " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Kształt: Koło" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Kształt: Zaokrąglony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Kształt: Miniatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Pokaż zoptymalizowane obrazy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Podpis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Rozmiar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Rozmiar 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Rozmiar 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Rozmiar 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Rozmiar 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Rozmiar 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Mały" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Mały nagłówek sekcji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solidny" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Ciała stałe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Ktoś z uprawnieniami eskalowanymi wcześniej zmodyfikował ten obszar, dlatego" +" nie możesz go zmodyfikować samodzielnie." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Specjalne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Styl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Sugestie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Kierunek przełączania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Przełącz kierunek tekstu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Stół" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opcje tabeli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Narzędzia tabeli" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID Szablonu: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Kolor tekstu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Pozycja tekstu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Styl tekstu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Adres URL wydaje się nie działać." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "Adres URL wydaje się prawidłowy." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Data i godzina %s nie pasują do formatu %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Dokument został już zapisany przez kogoś z inną historią dla modelu %r, pola" +" %r z identyfikatorem %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Podany adres URL nie odnosi się do żadnego obsługiwanego wideo" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Podany adres url jest nieprawidłowy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Podany adres URL jest nieprawidłowy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Użyta zostanie wersja z bazy danych.\n" +"Jeśli chcesz zachować zmiany, skopiuj poniższą zawartość i edytuj nowy dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Motyw" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Kolory motywów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Występuje konflikt między wersją użytkownika a wersją w bazie danych." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Ten adres URL jest nieprawidłowy. Nie można zaktualizować podglądu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Ten blok jest nieaktualny" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Ten dokument nie jest zapisany!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Ten plik jest publicznie dostępnym załącznikiem." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Plik ten jest dołączony do bieżącego rekordu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Ten obraz jest obrazem zewnętrznym" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Ten typ obrazu nie jest obsługiwany do przycinania.
Jeśli chcesz go " +"przyciąć, najpierw pobierz go z oryginalnego źródła i prześlij do Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Tytuł" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Tag tytułu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Aby wprowadzić zmiany, usuń ten blok i użyj nowych opcji w ostatniej wersji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Aby zapisać snippet, musimy zapisać wszystkie poprzednie modyfikacje i " +"przeładować stronę." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Przełącz pogrubienie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Przełącz listę kontrolną" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Przełącz obracanie ikony" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Przełącz kursywę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Przełącz uporządkowaną listę" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Przełącz przekreślenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Przełącz podkreślenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Przełącz listę nieuporządkowaną" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Śledzenie zadań za pomocą listy kontrolnej." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Przekształcenie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Przekształć obraz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Przekształć obraz (kliknij dwa razy, aby zresetować transformację)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Przetłumacz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Przezroczyste kolory" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Spróbuj wyszukać za pomocą innych słów kluczowych." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Typ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Wpisz \"/\" dla poleceń" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "Adres URL lub e-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Cofnij wyrównanie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Niespodziewany " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Prześlij dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Wgraj obrazek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Format przesłanego obrazu nie jest obsługiwany. Spróbuj z:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Format przesłanego obrazu nie jest obsługiwany. Spróbuj z: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Walencja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Wideo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatowanie wideo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Kod wideo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Wideo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Filmy są wyciszane, gdy włączona jest funkcja autoodtwarzania." + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Widok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Widoki i pakiety zasobów" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Ostrzeżenie: po zamknięciu tego okna dialogowego wersja, nad którą " +"pracowałeś, zostanie odrzucona i nigdy nie będzie już dostępna." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Falisty" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Podtest konwertera edytora WWW" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Test konwertera edytora stron internetowych" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widżety" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Szerokość" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Napisz coś..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Tak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Dokumenty można przesyłać za pomocą przycisku znajdującego się w lewym " +"górnym rogu ekranu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Obrazy można przesyłać za pomocą przycisku znajdującego się w lewym górnym " +"rogu ekranu." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Aby utworzyć załącznik, należy podać dane lub adres URL." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Twój adres URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zbliżenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Oddalenie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "i" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "przyciemnienie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "domyślny" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "wykluczenie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "rozjaśnienie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "mnożyć się" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "nakładka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "filmy wideo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "obsługa komunikatów websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt.po new file mode 100644 index 0000000..ac53f35 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt.po @@ -0,0 +1,3438 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Vitor Fernandes , 2022 +# Pedro Filipe , 2022 +# Pedro Castro Silva , 2022 +# Reinaldo Ramos , 2022 +# Diogo Fonseca , 2022 +# Dawilson Daio , 2022 +# Ricardo Martins , 2022 +# Martin Trigaux, 2022 +# Nuno Silva , 2022 +# Carlos Teles, 2023 +# Manuela Silva , 2023 +# NumerSpiral HBG, 2024 +# Wil Odoo, 2025 +# Peter Lawrence Romão , 2025 +# Daniel Reis, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Daniel Reis, 2025\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ou Integrar)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Adicionar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Adicionar URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alerta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alinhamento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tudo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anónimo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Anexo" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL do Anexo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Iniciar Automaticamente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fundo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Cor de fundo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloquear" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Negrito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Borda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Botão" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Cor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Cores" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Coluna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copiar Ligação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Capa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Criar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Tracejado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Predefinição" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descrição" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispositivos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documentos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Pontilhado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Duplo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar Contentor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "O ficheiro foi enviado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Preencher" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Fullscreen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Rotas HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Altura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ícone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Imagens" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Grande" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Esquerda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linear" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Linhas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Hiperligação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Hiperligação para" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Médio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nome" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Não" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nenhum(a)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Abrir numa nova janela" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Situação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Pré-visualizar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primário" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Qualidade" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Cotação" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Campo de Data" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Campo de Data hora" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Remover Bloco" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Substituir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Reiniciar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Direita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separador" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Sombra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Assinatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Tamanho" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Pequeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Estrutura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Sugestões" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabela" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Template ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Este tipo de imagem não pode ser recortada.
Se a quiser recortá-la, por " +"favor, transfira-a primeiro da fonte original e envie-a para o Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Título" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traduzir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Envie um documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Envie uma imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "O formato de imagem enviado não é suportado. Tente com:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "O formato da imagem carregada não é suportado. Tente com: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Vídeos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Ver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Largura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Escreva algo..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Sim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Pode enviar documentos com o botão localizado no topo à esquerda do ecrã." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Pode enviar imagens com o botão localizado no topo à esquerda do ecrã." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "Adicionar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "e" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ecrã" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt_BR.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt_BR.po new file mode 100644 index 0000000..5c5c72f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/pt_BR.po @@ -0,0 +1,3463 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Luis Felipe Miléo , 2022 +# Fernando Colus , 2022 +# grazziano , 2022 +# Martin Trigaux, 2023 +# Adriano Prado , 2023 +# Kevilyn Rosa, 2023 +# Éder Brito , 2023 +# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023 +# Maitê Dietze, 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Sugerido)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Marcador Alt' especifica um texto alternativo para uma imagem, se a imagem " +"não pode ser exibida (conexão lenta, imagem perdida, leitor de tela...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"O 'Título do Marcador' é exibido como um tooltip quando você sobrepõe o " +"mouse sobre a imagem." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ou Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 colunas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 estrelas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 colunas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 colunas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 estrelas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blocos" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Personalizar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Um erro de servidor ocorreu. Verifique se você fez login corretamente e se o" +" arquivo que está salvando está formatado corretamente." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Acima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Aceito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Adicionar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Adicionar coluna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Adicionar linha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Adicionar URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Adicione uma seção de citação em bloco." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Adicionar um botão." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Adicione uma seção de código." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Adicionar um link." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alerta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Alinhar ao centro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Alinhar à esquerda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Alinhar à direita" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alinhamento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tudo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Todos os arquivos SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Todos os documentos foram carregados" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Todas as imagens foram carregadas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Marcador ALT" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Ângulo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anônimo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Tem certeza de que deseja excluir este bloco de código: %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Tem certeza que quer excluir este arquivo?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Proporção da Tela" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Ativos Úteis" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Anexo" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL de anexos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Autoconverter para link relativo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Reprodução Automática" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fundo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Cor de Fundo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Posição do Background" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Base" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Blocos básicos" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Básicos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Abaixo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Título de seção grande." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloquear" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocks & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Blur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Negrito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Borda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Cor da Borda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Estilo da borda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Largura da Borda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Brilho" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Lista de itens" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Botão" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Cuidado !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Alterar descrição da mídia e dica de ferramenta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Lista de controle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Selecione um registro…" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Código" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Cor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtro de cor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Cores" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Coluna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Cores comuns" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflito de conteúdo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contraste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Converta em 2 colunas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Converta em 3 colunas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Converter em 4 colunas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copiar Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copie-cole sua URL ou código embed aqui" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Não é possível instalar o módulo %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Não foi possível carregar o arquivo \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Capa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Criar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Crie uma lista com numeração." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Criar um URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Cortar Imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Personalizar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Tracejado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Padrão" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Padrão + Arredondado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definir gradiente personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Excluir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Excluir %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descrição" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispositivos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Descartar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Descartar registro" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Deseja instalar o app %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documentos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Pontilhado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Duplo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Clique-duplo para editar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Arraste e solte o bloco de construção." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicar container" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Cores dinâmicas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Marcador de posição dinâmico" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"ERRO: Não é possível obter o download de urls a partir da biblioteca de " +"mídias." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Editar link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Editar imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Editar a descrição de mídia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Não é aconselhável editar um arquivo integrado por meio deste editor, pois " +"isso impedirá que ele seja atualizado durante futuras atualizações do " +"aplicativo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Imagem incorporada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Vídeo do YouTube incorporado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Incorpore a imagem no documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Incorpore o vídeo o YouTube no documento." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Limpar citação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Esperado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Estender até o canto mais próximo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Estender até a lateral mais próxima" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Estender até o canto mais afastado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Estender até a lateral mais afastada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "O arquivo foi carregado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Preencher" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Preencher + Arredondado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Cor de preenchimento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Primeiro Painel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Flat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexível" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Inverter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Flip Horizontal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Flip Vertical" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Formas flutuantes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Cor da Fonte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Tamanho da Fonte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Por motivos técnicos, esse bloco não pode ser solto aqui" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Tela Cheia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Obtenha a imagem perfeita pesquisando em nossa biblioteca de fotos e " +"ilustrações sem direitos autorais." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradiente" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Roteamento HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Cabeçalho 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Cabeçalho 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Cabeçalho 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Cabeçalho 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Cabeçalho 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Cabeçalho 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Cabeçalho 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Cabeçalho 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Cabeçalho 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Título 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Título 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Título 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Altura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Ocultar logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Ocultar botão de tela cheia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Ocultar controles de player" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Ocultar botão de compartilhamento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ícone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formatação de ícone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Tamanho do ícone: 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Tamanho do ícone: 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Tamanho do ícone: 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Tamanho do ícone: 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Tamanho do ícone: 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ícones" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Se você descartar as edições atuais, todas as alterações não salvas serão " +"perdidas. Você pode cancelar para retornar ao modo de edição." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Se você redefinir este arquivo, todas as suas personalizações serão " +"perdidas, pois ele será revertido para o arquivo padrão." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustrações" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatação da imagem" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Altura da Imagem" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Image Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Largura da Imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Preenchimento da imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Imagens" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Tinteiro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Texto interno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Inserir uma classificação acima de 3 estrelas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Inserir uma classificação de 5 estrelas." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Inserir uma tabela." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Inserir acima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Inserir um separador de régua horizontal." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Inserir uma imagem." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Inserir abaixo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Inserir à esquerda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Inserir mídia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Inserir ou editat link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Inserir conteúdo personalizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Inserir à direito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Inserir tabela" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Inserir sua assinatura." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instalar %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Instalação em progresso" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valor de campo inválido em %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Elementos invisíveis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Item" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Arquivo JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Largo" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Esquerda" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linear" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Linhas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Vínculo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Rótulo do Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link copiado para a área de transferência." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Vínculo para" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Carregar mais..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Cor principal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Ferramentas de marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Mídia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Meio" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Título de seção médio." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Mais informações sobre este app." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Mover para baixo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Mover para a esquerda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Mover para a direita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Mover para cima" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Minhas imagens" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nome" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navegação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Não" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Nenhum URL especificado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nenhum documento encontrado." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nenhuma imagem encontrada." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Nenhum local para drop in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Sem mais registros" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nenhum pictograma encontrado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Nenhum" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Lista numerada" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Testes do Editor do Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Somente Arquivos SCSS personalizados" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Somente páginas SCSS personalizadas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Somente Visualizações" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Abrir em uma nova aba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Abrir em uma nova janela" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Otimizado" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Anexo Original (não otimizado, não redimensionado)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Origens" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contorno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Contorno + Arredondado" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opções da página" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bloco de parágrafo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Colar como url" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Padrão" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Posição" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Visualizar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primário" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Que diabos panqueca, tabernáculo?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Que ele não chegou em Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Que ele deveria chegar em Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Qualidade" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Aspas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb Field" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Contato do Campo Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Field Date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Field Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb Field Duration" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Campo Qweb Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Field HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Field Image" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb Field Integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Field Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Campo Qweb Monetário" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Field Relative" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb Field Selection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Field Text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Field qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Campo somente leitura" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Redirecionar usuários para outro lugar quando clicarem na mídia." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Remover (Excluir)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Remover Bloco" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Remover atual" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Remover link" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Remover cor selecionada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Remover colunas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Removar formato" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Remover link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Renomear %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Repetir o padrão" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Trocar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Substituir mídia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Redefinir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Redefinir Imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Redefinir tamanho" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Redefinir corte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Redefinir transformação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "A redefinição de visualizações não é suportada ainda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Redimensionar padrão" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Redimensionar Completamente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Redimensionar Metade" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Redimensionar Um/Quarto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Direita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Girar para Esquerda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Girar para Direita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Linha" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Arquivo SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturação" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Salvar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Salve e Instale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Salvar e Recarregar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Salvar registro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Pesquisar um documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Pesquisar um pictograma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Pesquisar uma imagem" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Procurar um bloco (ex: número, mural de imagens…)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Procurar registros…" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Pesquisar mais..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Pesquisar para mostrar mais registros" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secundário" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Selecione um bloco na sua página para personalizá-lo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Selecione uma mídia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separador" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Erro interno do servidor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Sombra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Forma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Forma: Círculo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Forma: Arredondado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Forma: Miniatuara" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Exibir imagens otimizadas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Assinatura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Tamanho" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Tamanho: 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Tamanho: 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Tamanho: 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Tamanho: 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Tamanho: 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Pequeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Título de seção pequeno." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Sólido" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Sólidos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Alguém com direitos abrangentes modificou essa área anteriormente, portanto " +"você não pode modificá-la." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Especiais" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Estrutura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Estilo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Sugestões" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Mudar direçã" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Alterar a direção do texto." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Mesa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opções de tabela" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Modelo ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Cor do Texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Alinhamento do texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Estilo do texto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "A URL parece não estar funcionando." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "A URL parece ser inválida." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "A data e hora %s não correspondem ao formato %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"O documento já foi salvo por alguém com histórico diferente para o modelo " +"%r, campo %r com ID %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "A URL fornecida não faz referência a nenhum vídeo suportado" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "O URL fornecido é inválido" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "A url fornecida não é válida" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Cores do tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Há conflito entre sua versão e a versão da base de dados." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "O URL é inválido. Não foi possível atualizar pré-visualização." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Este bloco está desatualizado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "O documento não está salvo!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Este arquivo é um anexo de visualização pública." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Este arquivo está anexado ao registro atual." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Esta imagem é uma imagem externa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Este tipo de imagem não é compatível com corte.
Se você quiser recortá-" +"la, primeiro baixe-a da fonte original e carregue-a no Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Título" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Marcador Título" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Para fazer alterações, corte este bloco e utilize as novas opções na última " +"versão." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Para salvar um bloco de código, é preciso salvar todas as modificações " +"anteriores e recarregar a página." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Lista de Tarefas" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Torradeira" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Ativar/Desativar negrito" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Ativar/Desativar Lista de controle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Ativar/Desativar rotação de ícone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Ativar/Desativar itálico" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Ativar/Desativar lista ordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Ativar/Desativar tachado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Ativar/Desativar sublinhado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Ativar/Desativar lista não ordenada" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Dica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Monitorar tarefas com uma lista de verificação." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformar a imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transforme a imagem (clique duas vezes para redefinir a transformação)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Traduzir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Cores transparentes" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Tente pesquisar com outras palavras." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tipo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Digite \"/\" para comandos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL ou E-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Desalinhar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Inesperado" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Carregar um documento" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Carregar uma imagem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "O formato de imagem enviado não é suportado. Tente com:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "O formato de imagem enviado não é suportado. Tente com: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatação da vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Código de vídeo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Vídeos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Os vídeos são silenciados quando a reprodução automática está ativada" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Ver" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Pacotes de visualizações e ativos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Aviso: Ao fechar essa caixa de diálogo, a versão em que você está " +"trabalhando será descartada e não estará mais disponível." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Ondulado" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Subteste do conversor do Web Editor" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Teste de Conversor do Web Editor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Largura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Escreva algo..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "GG" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Sim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Você pode fazer upload de documentos com o botão localizado no canto " +"superior esquerdo da tela." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Você pode carregar imagens com o botão localizado no topo superior esquerdo " +"da tela." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Você precisa especificar cada dado ou url para criar um anexo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Seu URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Mais Zoom" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Menos Zoom" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "adicionar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "e" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "escuro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "default" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusão" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "claro" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "sobreposição" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "tela" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "vídeos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "Tratamento de mensagens via websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.exemplo.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ro.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ro.po new file mode 100644 index 0000000..7105ebc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ro.po @@ -0,0 +1,3460 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# sharkutz , 2022 +# Foldi Robert , 2022 +# Hongu Cosmin , 2022 +# Martin Trigaux, 2022 +# Claudia Baisan, 2023 +# Cozmin Candea , 2023 +# Lyall Kindmurr, 2023 +# Dorin Hongu , 2023 +# Alin Miclea, 2024 +# Corina Calin, 2024 +# Wil Odoo, 2025 +# Larisa_nexterp, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Larisa_nexterp, 2025\n" +"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Sugerat)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"„Alt tag” specifică un text alternativ pentru o imagine, dacă imaginea nu " +"poate fi afișată (conexiune lentă, imagine lipsă, cititor de ecran ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"„Eticheta titlului” este afișată ca un sfat de instrument când treceți " +"fotografia." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(Etichetă Titlu)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL sau Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 coloane" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Stele" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 coloane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 coloane" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Stele" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blocuri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"A apărut o eroare de server. Verificați dacă v-ați conectat corect și că " +"fișierul pe care îl salvați este formatat corect." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Deasupra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Accept/ări" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Adaugă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Adaugă coloană" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Adăugați rând" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Adăugare URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Inserare bloc de citat (Quote)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Adăugați un buton." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Adăugați o secțiune de cod." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Adăugați un link." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Alertă" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Aliniați centru" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Aliniați la stânga" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Aliniați la dreapta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Aliniament" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Toate fișierele SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Toate documentele au fost încărcate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Toate imaginile au fost încărcate" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Etichetă Alt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Unghi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplică" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Sigur doriți să ștergeți acest fișier?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Aspect Raport" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Utile Active" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Atașament" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Atașament URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Conversia automată la link relativ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autoplay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Fundal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Culoare fundal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Poziție fundal" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Baza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Blocuri de bază" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Bază" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Dedesubt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Title secțiune mare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Pete" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Bloc" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocuri și ploi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Aburire" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Bold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Margine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Culoarea marginii" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Stil margine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Lățimea marginii" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Luminozitate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Listă cu puncte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Buton" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Anulează" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Fii Atent !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centru" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Schimbarea descriere media și sfatul" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Listă verificare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Alegeți o înregistrare..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Închide" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Cod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Filtru de culoare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Culori" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Coloana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Culori comune" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Confirmare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Conflict de conținut" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Convertiți în 2 coloane." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Convertiți în 3 coloane." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Convertiți în 4 coloane." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copiază link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copiați și inserați URL-ul sau codul încorporat aici" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Nu s-a putut instala modulul %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Nu s-a putut încărca fișierul \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Copertă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Creează" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Creare listă numerotată." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Creează un URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Creat în" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Decupare imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Personalizat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Personalizat %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Rutină zilnică" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Întrerupt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Implicit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Implicit + Rotunjit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Definește un gradient personalizat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Șterge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Șterge %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Descriere" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Dispozitive" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Abandonează" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Doriți să instalați \"%s\" Aplicația?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Documente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Punctat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dublu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Dublu Clock pentru editare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Trageți și plasați blocul de construcție." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplică container" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Culori Dinamice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Substituent dinamic" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "EROARE: nu s-au putut descărca adrese URL din biblioteca media." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Editează linkul" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Editare Imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Editează descrierea media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Nu este recomandată editarea unui fișier încorporat prin intermediul acestui" +" editor, deoarece îl va împiedica să fie actualizat pe parcursul " +"actualizărilor viitoare ale aplicației." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Încorporează imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Încorporează video Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Încorporează imaginea în document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Încorporează videoclipul Youtube în document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Citat gol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Estimat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Extinde la colțul cel mai apropiat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Extinde la latura cea mai apropiată" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Extinde la colțul cel mai îndepărtat" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Extinde la latura cea mai îndepărtată" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Fișierul a fost încărcat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Completați" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Umplere + Rotunjire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Umplere Culoare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtru" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Primul Panou" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Plat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexibil" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Răstoarnă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Rotire orizontală" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Rotire verticală" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Culoare font" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Mărime font" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Din motive tehnice, acest bloc nu poate fi plasat aici" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Ecran Complet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Obțineți imaginea perfectă căutând în biblioteca noastră fotografii și " +"ilustrații fără drepturi de autor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Rutare HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Antet 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Antet 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Antet 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Antet 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Antet 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Antet 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Titlu 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Titlu 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Titlu 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Titlu 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Titlu 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Titlu 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Înălțime" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Ascundeți logo Rutină zilnică" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Ascunde buton ecran complet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Ascundeți controalele jucătorului" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Ascunde butonul Distribuire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Pictogramă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Formatare pictogramă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Pictogramă dimensiune 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Pictogramă dimensiune 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Pictogramă dimensiune 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Pictogramă dimensiune 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Pictogramă dimensiune 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Pictograme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Dacă renunțați la modificările curente, toate modificările nesalvate vor fi " +"pierdute. Puteți anula pentru a reveni la modul de editare." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Dacă resetați acest fișier, toate personalizările dvs. vor fi pierdute " +"deoarece va fi readus la fișier implicit." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustrații" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatare imagine" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Înălțime imagine" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Sursa Imagine" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Lățimee imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Spațiere imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Imagini" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Cerneală" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Text în linie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Inserați o evaluare peste 3 stele." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Inserați o evaluare peste 5 stele." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Inserare tabel." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Inserează deasupra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Inserare separator orizontal." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Inserare imagine." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Inserează dedesubt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Inserează la stânga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Inserează media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Inserează sau editează link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Inserează la dreapta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Inserează tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Inserați semnătura dvs." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instalează" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Instalare %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Instalare În desfășurare" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Valoare de câmp invalidă pentru %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Elemente Invizibile" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Articol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Fișier JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Larg" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Stânga" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Liniar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Linii" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Etichetă de legătură" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Linkul a fost copiat în clipboard!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Legătură către" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Listă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Încarcă mai mult " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Buclă" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Culoare principală" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Unelte de marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Mediu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Titlu secțiune mediu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Mai multe informații despre această aplicație." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Mută în jos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Mută ​​la stânga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Mută la dreapta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Mută în sus" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Imaginile Mele" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Nume" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Niciun URL specificat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Niciun document găsit." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nicio imagine gasită." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Nicio locație de închis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Nu mai există înregistrări" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Nicio pictogramă găsită." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Fără" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Listă numerotată" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Teste Editor Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Doar fișiere personalizate SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Doar fișiere SCSS pagina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Doar Vizualizări" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Deschide într-o filă nouă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Deschide într-o fereastră nouă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimizat" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Atașament original (neoptimizat, nemodificat)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Origini" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Contur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Schiță + Rotunjit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Umplutură" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Opțiuni pagină" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Bloc de paragraf." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Lipește ca URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Modele" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Poziție" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Previzualizare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primar" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Ce face clătita aia blestemată, tabernacle?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Că nu a ajuns la Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Că trebuia să ajungă la Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Calitate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Câmp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Contact Câmp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb câmp dată" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb câmp Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Durata câmpului Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb câmp Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Câmp HTLM" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Imagine Câmp Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb câmp Integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Câmp Many to one" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Câmp Monetar" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb câmp Relativ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb câmp Selecție" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Câmp Text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Câmp qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Câmp doar pentru citire" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Redirecționează utilizatorul în altă parte când face clic pe media." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Șterge (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Eliminare bloc" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Șterge curentul" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Elimină linkul" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Șterge culoarea selectată" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Elimină coloanele" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Șterge formatarea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Elimină link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Redenumește %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Repetați modelul" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Înlocuire " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Înlocuiți media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Resetează" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Resetare Imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Resetează dimensiunea" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Resetează decuparea" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Resetează transformarea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Resetarea vizualizărilor nu este încă acceptată" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Redimensionare implicită" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Redimensionare completă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Redimensionați jumătate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Redimensionare sfert" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Dreapta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Roteste la stanga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Roteste spre dreapta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Rând" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Fișier SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturație" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Salvează" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Salvare și instalare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Salvați și reîncărcați" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Căutați un document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Căutați o pictogramă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Căutați o imagine" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Caută un bloc (ex: numere, perete de imagini, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Caută înregistrări..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Caută mai mult ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Caută pentru a afișa mai multe înregistrări" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secundar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Selectează un bloc pe pagina ta pentru a-l stiliza." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Selectează un fișier media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Eroare server" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Umbră" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Formă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Formă: Cerc" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Formă: Rotunjit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Formă: Miniatură" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Afișați imagini optimizate" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Semnătură" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Dimensiune" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Dimensiune 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Dimensiune 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Dimensiune 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Dimensiune 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Dimensiune 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Mic" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Titlu secțiune mic." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solide" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Cineva cu drepturi ridicate a modificat anterior această zonă, prin urmare " +"nu o puteți modifica dvs." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Speciale" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Structura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Sugestii" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Schimbă direcția" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Schimbați direcția textului." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Opțiuni tabel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID șablon: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Culoare text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Aliniere text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Stil text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL-ul nu pare să funcționeze." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "Adresa URL pare valabilă." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Data și ora %s nu corespund formatului %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "URL-ul furnizat nu face referire la niciun videoclip acceptat" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "URL-ul furnizat nu este valid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "URL-ul furnizat nu este valid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Temă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Culorile temei" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Există un conflict între versiunea dvs. și cea din baza de date." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Acest URL nu este valid. Previzualizarea nu a putut fi actualizată." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Acest document nu este salvat!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Acest fișier este un atașament de vizualizare publică." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Acest fișier este atașat la înregistrarea curentă." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Această imagine este o imagine externă" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Acest tip de imagine nu este acceptat pentru decupare.
Dacă doriți să o" +" decupați, vă rugăm mai întâi să o descărcați din sursa originală și să o " +"încărcați în Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titlu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Etichetă titlu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Pentru a salva un fragment, trebuie să salvăm toate modificările anterioare " +"și să reîncărcăm pagina." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "A face" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Comută aldine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Comută lista de verificare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Comută rotirea pictogramei" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Comută cursiv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Comută listă ordonată" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Comută tăierea textului" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Comută sublinierea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Comută listă neordonată" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Sfat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Urmăriți sarcinile cu o listă de verificare." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transformă" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transformă imaginea" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Transformă imaginea (faceți clic de două ori pentru a reseta transformarea)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Tradu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Culori transparente" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Încercați să căutați cu alte cuvinte cheie." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Tastați \"/\" pentru comenzi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL sau E-mail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Dezaliniere" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Neașteptat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Încărcați un document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Încarcă o imagine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Formatul imaginii încărcate nu este acceptat. Încercați cu: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Formatul imaginii încărcate nu este acceptat. Încercați cu: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatare video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Cod video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videos" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videoclipurile sunt dezactivate când este activată redarea automată" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Afișare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Pachetele de vizualizări și active" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Atenție: după ce închideți acest dialog, versiunea la care lucrați va fi " +"abandonată și nu va mai fi disponibilă." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Wavy" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Subtest Convertor Editor Web" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor Converter Test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widget-uri" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Lățime" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Scrie ceva..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Da" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Puteți încărca documente cu butonul situat în partea stângă sus a ecranului." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Puteți încărca imagini cu butonul situat în partea stângă sus a ecranului." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" +"Trebuie să specificați fie datele, fie adresa URL pentru a crea un " +"atașament." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL-ul dvs." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Mărire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Micșorare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "adăugare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "și" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "întunecare" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "implicit" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "excludere" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "iluminare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplicare" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "acoperire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ecran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videouri" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "gestionarea mesajelor websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.exemplu.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ru.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ru.po new file mode 100644 index 0000000..1062c48 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ru.po @@ -0,0 +1,3471 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Irina Fedulova , 2022 +# ILMIR , 2022 +# Gennady Marchenko , 2022 +# Алексей , 2022 +# Иван Дроздов , 2022 +# Vasiliy Korobatov , 2022 +# Amaro Vita , 2022 +# Sergey Vilizhanin, 2022 +# Viktor Pogrebniak , 2022 +# Collex100, 2022 +# Ivan Kropotkin , 2022 +# valmasone, 2023 +# Сергей Шебанин , 2023 +# Alena Vlasova, 2023 +# Martin Trigaux, 2023 +# alenafairy, 2023 +# Wil Odoo, 2025 +# Ilya Rozhkov, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Ilya Rozhkov, 2025\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Исходная)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Рекомендуемая)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' указывает альтернативный текст для изображения, если изображение " +"не может быть отображено (медленное соединение, отсутствует изображение, при" +" чтении с экрана ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'Title tag' отображается как подсказка при наведении на изображение." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL или Вставить)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 колонки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 звезды" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 колонки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 колонки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 звезд" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Блоки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Настроить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Ошибка сервера. Убедитесь, что вы правильно вошли, а файл, который вы " +"храните, правильно отформатирован." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Выше" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "принимает" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Добавить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Добавить столбец" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Добавить строку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Добавить через URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Добавить абзац с цитатой." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Добавить кнопку." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Добавить абзац с кодом." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Добавить ссылку." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Аден" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Эйри и Зигс" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Предупреждение" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Выровнять по центру" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Выровнить по левому краю" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Выровнить по правому краю" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Выравнивание" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Все" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Все файлы SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Все документы загружены" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Все изображения загружены" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Тег Alt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Угол" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Анимированный" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Анонимно" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Применить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "соотношение сторон" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Активы" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Вложение" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL вложения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Автоматически конвертировать в относительную ссылку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Автозапуск" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Фон" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Цвет фона" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Расположение фона" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Базовый" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Базовые блоки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Основное" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Ниже" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Большой заголовок раздела." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Стоп" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Блоки и дождь" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Размытие" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Жирный" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Рамка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Цвет границы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Стиль рамки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Толщина рамки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Браннан" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Яркость" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr " Маркированный список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Кнопка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Отмена" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Осторожно!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "По центру" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Изменить медиаописание и всплывающую подсказку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Чеклист" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Выберите запись..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Закрыть" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Код" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Цвет" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Цветной фильтр" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Цвета" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Колонка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Общие цвета" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Подтвердить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Подтверждение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Контраст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Копировать ссылку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Скопируйте и вставьте вашу URL-адрес или вставьте ваш код здесь" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Не удалось установить модуль %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Не удалось загрузить файл «%s»." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Обложка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Создать" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Создать список с нумерацией." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Создать простой маркированный список." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Создайте URL-адрес." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Создал" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Дата создания" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Обрезать изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Пользовательский" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Пользовательский %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Штрихи" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "По умолчанию" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "По умолчанию + Округлый" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Определите пользовательский градиент" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Удалить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Удалить %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Удалить текущую таблицу" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Описание" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Устройства" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Отменить" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Отменить" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Вы действительно хотите установить приложение \"%s\"?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Документы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Точки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Двойная" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Двойной клик для редактирования" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Перетащите строительный блок." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Дублировать блок" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Динамические цвета" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Динамический держатель" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "ERROR: не удалось получить урлы загрузки из медиатеки." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Править ссылку" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Изменить изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Редактирование описания медиафайлов" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Редактирование встроенного файла через этот редактор не рекомендуется, так " +"как это не позволит обновить его при последующих обновлениях приложения." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Вставить изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Вставить видео с Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Вставьте изображение в документ." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Вставьте видео с youtube в документ." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Пустая цитата" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "ожидаются" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Продлить до ближайшего угла" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Вытянитесь на ближайшую сторону" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Протянитесь в самый дальний угол" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Протянитесь в самую дальнюю сторону" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Файл был загружен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Сплошной" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Сплошной + Округлый" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Цвет заливки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Фильтр" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Первая панель" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Плоский" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Гибкий" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Переворот" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "перевернуть горизонтально" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "перевернуть вертикально" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Плавающие формы" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Цвет шрифта" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Размер шрифта" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "По техническим причинам этот блок не может быть сброшен сюда" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Формат" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Во весь экран" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Вы можете найти отличные изображения в нашей библиотеке бесплатных фото и " +"иллюстраций." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Градиент" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизация HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Заголовок 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Заголовок 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Заголовок 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Заголовок 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Заголовок 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Заголовок 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Заголовок 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Заголовок 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Заголовок 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Заголовок 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Заголовок 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Заголовок 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Высота" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Скрыть логотип Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Скрыть полноэкранную кнопку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Скрыть элементы управления плеером" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Скрыть кнопку распространение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "Идентификатор" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Иконка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Форматирование значков" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Размер иконы 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Размер значка 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Размер значка 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Размер значка 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Размер значка 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Иконки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Вы не нажали кнопку Сохранить и изменения не сохранятся. Нажмите Отменить, " +"чтобы вернуться к редактированию." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Если вы сбросите этот файл, все ваши настройки будут потеряны, так как они " +"будут заменены на файл по умолчанию." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Иллюстрации" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Форматирование изображений" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Высота изображения" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Источник изображения" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Ширина изображения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Отступы изображения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Изображения" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Чернильница" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Встроенный текст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Вставить таблицу." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Вставить выше" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Вставить горизонтальную линию." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Вставить картинку." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Вставить ниже" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Вставка слева" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Вставка носителя" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Вставить или править ссылку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Вставка персонализированного содержимого" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Вставить справа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Вставить таблицу" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Установить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Установить %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Выполняется установка" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Недопустимое значение поля для %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Невидимые элементы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Пункт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Файл JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Большой" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновил" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Левый" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Линейный" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Строк" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Ссылка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Текст Ссылки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Ссылка скопирована в буфер обмена." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Ссылка на" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Загрузить ещё..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "цикл" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Основной цвет" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Инструменты маркетинга" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Мавен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Медиа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Тип трафика" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Средний заголовок раздела." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Дополнительная информация об этом приложении." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Переместить вниз" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Передвинуть влево." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Передвинуть вправо." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Переместить вверх" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Мои изображения" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Имя" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Навигация" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Нет" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL не указан" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Документы не найдены." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Не найдено изображений." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Нет места, куда можно было бы заглянуть" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Больше никаких записей" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Пиктограммы не найдены." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Нет" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Нормальный" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Нумерованный список" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Тесты редактора Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Только пользовательские файлы SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Только SCSS-файлы страницы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Только виды" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Открыть в новом окне" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Оптимизированный" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Оригинальное ( неотредактированное, не измененное в размере) вложение" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Истоки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Контурный" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Контурный + Округлый" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Отступ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Параметры страницы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Простой абзац." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Вставить как URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Узоры" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Положение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Просмотр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Основной" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Что это за блин, который он подает на стол?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Предполагается, что он прибудет в Торонто" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Качество" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Цитата" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "поле Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Контакт Qweb поля" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Дата поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Дата время поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Продолжительность поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb поле с плавающей запятой" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "HTML поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Поле с изображением" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Целое поле Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Поле Qweb Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Денежное поле Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Поле ссылки Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Выбор поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Текст поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb поле qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Радиальный" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Поле только для чтения" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" +"Перенаправляйте пользователя в другое место, когда он нажимает на медиа." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Удалить (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Удалить блок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Удалить текущий" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Убрать ссылку" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Удалить выбранный цвет" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Удалить колонки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Удалить формат" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Убрать ссылку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Переименовать %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Повторяйте узор" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "заменить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Заменить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Сбросить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "сбросить изображения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Сброс размера" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Сброс урожая" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Сброс трансформации" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Сброс просмотров еще не поддерживается" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Изменить размер по умолчанию" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Полный размер" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Половинный размер" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Четверть размера" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Справа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "повернуть налево" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "повернуть направо" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Ряд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Файл SCSS:%s " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Насыщенность" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Сохранить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Сохранить и установить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Сохранить и перезагрузить" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Сохранить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Поиск документа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Поиск пиктограммы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Поиск изображения" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Поиск блока (например, цифры, изображение стены, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Поиск записей..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Искать больше..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Поиск, чтобы показать больше записей" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Вторичный" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Выберите блок на странице, чтобы придать ему стиль." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Выбрать медиа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Разделитель" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Сепия" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Ошибка сервера" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Тень" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Фигура" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Форма: Круг" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Форма: Округлый" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Форма: Миниатюра" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Показывать сжатые изображения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Подпись" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Размер" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Размер 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Размер 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Размер 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Размер 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Размер 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Маленький" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Малый заголовок раздела." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Сплошная" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Тела" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Кто-то с повышенными правами уже изменил эту область, поэтому вы не можете " +"изменить ее самостоятельно." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Специальное" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Структура" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Стиль" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Предложения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Направление переключения" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Таблица" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Опции таблицы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Инструменты таблицы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID шаблона: %s " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Текст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Цвет текста" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Выравнивание текста" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Стиль текста" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL-адрес, похоже, не работает." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL-адрес кажется действительным." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Время даты %s не соответствует формату %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Документ уже был сохранен кем-то с другой историей для модели %r, поля %r с " +"идентификатором %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Указанная URL-адрес не содержит ссылки на любое поддерживаемое видео" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Указанный url недействителен" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Предоставленная URL-адрес недействительна" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Будет использована версия из базы данных.\n" +" Если вам необходимо сохранить изменения, скопируйте текст и отредактируйте новый документ." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Тема" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Цвета темы" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Есть несоответствие между вашей версией и версией в базе данных." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" +"Этот URL-адрес недействителен. Не удалось обновить предварительный просмотр." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Этот документ не сохранен!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Этот файл является приложением для публичного просмотра." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Этот файл прикреплен к текущей записи." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Это изображение является внешним изображением" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Этот тип изображения не поддерживается для обрезки.
Если вы хотите " +"обрезать изображение, пожалуйста, сначала скачайте его из оригинального " +"источника и загрузите в Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Заголовок" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Тег заголовка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Чтобы сохранить сниппет, нужно сохранить все предыдущие изменения и " +"перезагрузить страницу." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Дела" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Тостер" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Выделить жирным шрифтом" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Переключить чеклист" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Переключение вращения значка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Переключить курсив" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Переключить нумерованный список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Переключить зачеркивание" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Переключить подчеркивание" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Переключить маркированный список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Подсказка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Отслеживать задачи при помощи чеклиста." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Преобразование" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Преобразуйте изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" +"Преобразовать изображение (нажмите дважды, чтобы сбросить преобразование)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Перевести" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Прозрачные цвета" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Попробуйте поискать с другими ключевыми словами." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Раздел" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr " Введите \"/\" для меню команд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL или Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Выравнивание" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "неожиданно" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Загрузить документ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Загрузить изображение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Формат загруженного изображения не поддерживается. Попробуйте с:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" +"Формат загруженного изображения не поддерживается. Попробуйте использовать: " +"%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Валенсия" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Форматирование видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Код видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Видео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" +"Видео с выключенным звуком при включении автоматическое воспроизведение" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Осмотр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Пакеты представлений и активов" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Уолден" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Предупреждение: после закрытия этого окна, текущая версия документа будет " +"удалена и больше не будет доступна." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Волнистый" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Пидтест конвертера веб-редактора" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Тест конвертера веб-редактора" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Виджеты" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Ширина" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Напишите что-нибудь..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Да" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Загрузить документы можно с помощью кнопки, расположенной в верхней левой " +"части экрана." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "Вы можете загрузить изображения по кнопке вверху окна." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Для создания вложения необходимо указать либо данные, либо url." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Ваш URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "приблизить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "уменьшить" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "добавить" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "и" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "авто" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "темнее" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "по умолчанию" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "исключения" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "светлый" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "несколько" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "наложение" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "экран" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "видео" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "обработка сообщений в сокетах" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sk.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sk.po new file mode 100644 index 0000000..fe94060 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sk.po @@ -0,0 +1,3446 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# gebri , 2022 +# Matus Krnac , 2022 +# karolína schusterová , 2022 +# Lívia Dudejová , 2022 +# Pavol Krnáč , 2022 +# Alexandra Brencicova , 2022 +# Filip Brenčič , 2022 +# Rastislav Brencic , 2022 +# Martin Trigaux, 2022 +# Jan Prokop, 2022 +# Damian Brencic , 2023 +# Jaroslav Bosansky , 2023 +# Wil Odoo, 2025 +# Tomáš Píšek, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Tomáš Píšek, 2025\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"„Alt tag“ určuje alternatívny text pre obrázok, ak sa obrázok nedá zobraziť " +"(pomalé pripojenie, chýbajúci obrázok, čítačka obrazovky ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Title tag' pri umiestnení kurzora myši na ikonu sa zobrazuje ako popis." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL or Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Vyskytla sa chyba servera. Skontrolujte prosím či ste správne prihlásený a " +"či ukladané súbory majú správny formát." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Akceptuje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Pridať" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Pridať URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Upozornenie" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Zarovnanie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Všetko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "All SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Všetky obrázky boli načítané" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animovaný" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonymné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Použiť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Naozaj chcete odstrániť tento súbor?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Pomer strán" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Využitie majetku" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Príloha" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL prílohy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autoplay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Pozadie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Farba pozadia" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Základ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blokovať" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Zvýraznené" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Hranice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Farba okraja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Šírka okraja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Tlačidlo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Zrušené" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Opatrne!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Stred" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Zmeniť popis média a pomôcku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvoriť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kód" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Farba" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Farby" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Stĺpec" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Bežné farby" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdiť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Potvrdenie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Skopírovať odkaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Obálka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Vytvoriť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Orezanie obrázka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Vlastné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Prerušovaný" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Predvolený" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Zmazať" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Popis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Zariadenia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Zrušiť" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenty" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Bodkované" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dvojitý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Dvojklik pre editáciu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicitný kontajner " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Očakávané" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Naplňte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Plochý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexibilné" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Preklopiť vodorovne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Preklopiť zvisle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Farba fontu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Veľkosť písma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Formát" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Celá obrazovka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP smerovanie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Hlavička 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Hlavička 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Hlavička 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Hlavička 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Hlavička 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Hlavička 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Výška" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Skryť logo Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Skryť tlačidlo plnej obrazovky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Skryť hráčske ovládania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Skryť tlačidlo zdieľania" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Ak zahodíte súčasné úpravy, všetky neuložené zmeny sa stratia. Zrušením sa " +"vrátite do režimu úprav." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Ak vynulujete tento súbor, všetky úpravy sa stratia návratom k " +"prednastavenému súboru." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Obrázok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Výška obrázku" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Obrázok Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Šírka obrázka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Obrázky" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Nainštalovať" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Veľké" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Vľavo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Lineárne" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Riadky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Štítok odkazu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Odkaz bol skopírovaný do schránky" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Odkaz na" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Zoznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Načítať viac" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Slučka" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Média" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Médium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Meno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigácia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nenašli sa žiadne dokumenty." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nenašli sa žiadne obrázky." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Žiadne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normálna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Otvoriť v novom okne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Pôvodná (neoptimalizovaná, nezmenšená) príloha" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Osnova" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Zarovnanie" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pozícia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Náhľad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Hlavné" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvalita" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citácia" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb pole" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb pole kontaktu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb pole dátumu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb pole dátum/čas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb pole trvanie" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Pole Qweb Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb pole HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb pole obrázok" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb pole celé číslo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Pole Qweb veľa k jednej" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Field Monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Pole Qweb príbuzenstva" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb pole výberu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb textové pole" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb pole qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Iba na čítanie pole" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Odstrániť blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Vymeniť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Reset" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Vynulovať obrázok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Nulovanie nie je zatiaľ podporované" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Zmeniť veľkosť celý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Zmeniť veľkosť polovica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Zmeniť veľkosť štvrtina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Vpravo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Otočiť vľavo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Otočiť vpravo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Uložiť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Uložiť a inštalovať" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Uložiť a znovu načítať" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Vyhľadať dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Vyhľadať piktogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Vyhľadať obrázok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Vyhľadať viac..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekundárne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Oddeľovač" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Chyba servera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Tieň" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Tvar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Podpis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Veľkosť" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Malé" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Jednoliaty" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Štruktúra" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Štýl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Stôl" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID šablóny: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Zdá sa, že adresa URL nefunguje." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Poskytnuté URL neodkazuje na žiadne podporované video" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Poskytnuté URL je neplatné" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Téma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Farby témy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Tento dokument ni je uložený!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Tento obrázok je externý obrázok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titul" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Pomôcka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Transformácia obrázka (dvojitým kliknutím obnovíte transformáciu)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Preložiť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Priehľadné farby" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Typ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL alebo Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Neočakávaný" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Nahrať dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Nahrajte obrázok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Kód videa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videá" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Náhľad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Balíky zobrazení a majetku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Test webového editora" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Šírka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Napíšte niečo..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Áno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Obrázky môžete načítať pomocou tlačidla umiestneného v ľavom hornom rohu " +"obrazovky." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Obrázky môžete načítať pomocou tlačidla umiestneného v ľavom hornom rohu " +"obrazovky." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Ak chcete vytvoriť prílohu, musíte zadať údaje alebo webovú adresu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Priblížiť" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Vzdialiť" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "pridať" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "a" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videá" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sl.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sl.po new file mode 100644 index 0000000..a6a7c47 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sl.po @@ -0,0 +1,3444 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Dejan Sraka , 2022 +# laznikd , 2022 +# Boris Kodelja , 2022 +# Vida Potočnik , 2022 +# Matjaz Mozetic , 2022 +# matjaz k , 2022 +# Tadej Lupšina , 2022 +# Grega Vavtar , 2022 +# Jasmina Macur , 2022 +# Martin Trigaux, 2023 +# Tomaž Jug , 2023 +# Katja Deržič, 2024 +# Gregor Flajs, 2024 +# Wil Odoo, 2025 +# Aleš Pipan, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Aleš Pipan, 2025\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"Oznaka »Alt« določa nadomestno besedilo za sliko, če slike ni mogoče " +"prikazati (počasna povezava, manjkajoča slika, bralnik zaslona ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"»Naslovna oznaka« se prikaže kot opis, ko se z miško pomaknete nad sliko." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ali vdelava)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 stolpca" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 zvezdice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 stolpci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 Stolpci" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Zvezdic" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Sprejema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Dodajte vrstico" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Dodaj URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Opozorilo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Poravnava" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Vse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Vsi dokumenti so bili naloženi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Vse slike so bile naložene" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Kot" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animiran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonimen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Uporabi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Razmerje stranic" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Orodja sredstev" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Priponka" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL priloge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Samodejno igranje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Ozadje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Barva ozadja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Osnova" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Osnove" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Zameglitev" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Krepko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Obroba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Barva obrobe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Širina obrobe" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Označen seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Gumb" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Prekliči" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Center" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Kontrolni seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zaključi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Oznaka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Barva" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Barvni filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Barve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Stolpec" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potrdi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Potrditev" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopiraj povezavo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopirajte in prilepite svoj URL ali vdelano kodo tukaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Datoteke ni bilo mogoče naložiti \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Poln obseg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Ustvari" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Ustvari URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Prilagojeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dnevno gibanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Črtkano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Privzeto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Določite gradient po meri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Izbriši" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Naprave" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Opusti" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Točkovano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dvojno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Podvoji vsebnik" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dinamični nadomestni znak" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"NAPAKA: URL-jev za prenos ni bilo mogoče pridobiti iz medijske knjižnice." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Uredi povezavo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Uredi opis medija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Vdelaj sliko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Vdelaj videoposnetek z YouTuba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Vdelaj sliko v dokument." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "V dokument vdelaj videoposnetek z YouTuba." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Pričakovano" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Razširite do najbližjega kota" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Raztegnite do najbližje strani" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Raztegnite se do najbolj oddaljenega kota" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Raztegnite do najbolj oddaljene strani" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Datoteka je bila naložena" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Polnilo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Polnilo + Zaokroženo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Vodoravno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Prilagodljivo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Obrni vodoravno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Obrni navpično" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Plavajoče oblike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Barva pisave" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "VCelikost črk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Preliv" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmerjanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Glava 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Glava 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Glava 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Glava 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Glava 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Glava 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Naslov 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Naslov 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Naslov 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr " Naslov 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Naslov 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Naslov 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Višina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Skrij logotip Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Gumb za skrivanje celozaslonskega načina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Skrij kontrole predvajalnika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Skrij gumb za deljenje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Velikost ikone 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Velikost ikone 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Velikost ikone 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Velikost ikone 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Velikost ikone 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Če zavržete trenutne popravke, bodo vse nezapisane spremembe izgubljene. Če " +"se želite vrniti v način urejanja, ga lahko prekličete." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ilustracije" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Višina slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Izvor slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Širina slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Oblazinjenje slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Vstavi zgoraj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Vstavi spodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Vstavi levo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Vstavi desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Namesti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Element/a" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Široko" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Levo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linearno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Vrstice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Povezava" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Povezava je bila kopirana v odložišče." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Povezava z" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Seznam" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Naloži več..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Zanka" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Trženjska orodja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Mediji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Premakni navzdol" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Premakni se levo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Premakni se desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Premakni se navzgor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Moje slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Naziv" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigacija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL ni naveden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Ni najdenih dokumentov." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Ni najdenih slik." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Ni najdenih piktogramov." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ni prenosa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Običajno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Oštevilčen seznam" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Odpri v novem zavihku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Odpri v novem oknu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimizirano" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Izvirna (neoptimizirana, nespremenjena velikost) priloga" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Obroba" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Obris + Zaokroženo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Prilepi kot URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Delovno mesto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Predogled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primarna" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kakovost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb polje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb polje - stika" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb polje - datum" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb polje - datum/čas" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb polje - trajanje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb polje - plavajoč" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb polje - HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb polje - slika" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb polje celo število" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb polje - mnogo-proti-ena" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Poljni denarni" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb polje - povezano" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb polje - izbor" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb polje - besedilo" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb polje - qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radialno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Odstrani (IZBRIŠI)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Odstrani blok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Odstrani povezavo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Odstrani stolpce" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Odstrani povezavo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Replace" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Zamenjajte medij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Obnovi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Ponastavi sliko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Ponastavi velikost" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Spremeni velikost privzeto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Spremeni velikost v celoti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Spremeni velikost polovice" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Spremeni velikost četrtine" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Zavrti levo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Zavrti desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Nasičenost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Shrani" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Shrani zapis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Iskanje dokumenta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Iskanje piktograma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Iskanje slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekundarne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Izberite medij" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Ločilnik" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Napaka strežnika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Senca" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Oblika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Oblika: krog" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Oblika: Zaobljena" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Oblika: Sličica" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Prikaži optimizirane slike" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Podpis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Velikost" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Majhno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Normalno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Structure" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Predlogi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Preklop smeri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Miza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID predloge: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Besedilo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Barva besedila" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Zdi se, da URL ne deluje." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL se zdi veljaven." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Navedeni URL ne navaja nobenega podprtega videoposnetka" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Navedeni URL je neveljaven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Navedeni URL ni veljaven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Barve teme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Ta URL ni veljaven. Predogleda ni bilo mogoče posodobiti." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Ta dokument ni shranjen!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Ta datoteka je javno dostopna priloga." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Ta datoteka je priložena trenutnemu zapisu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Ta slika je zunanja slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Ta vrsta slike ni podprta za obrezovanje.
Če jo želite obrezati, jo " +"najprej prenesite iz izvirnega vira in jo naložite v Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Naslov" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Preklopi krepko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Preklopi vrtenje ikone" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Preklopi poševnino" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Preklopi prečrtano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Preklopi podčrtavanje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Namig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Preoblikujte sliko (dvakrat kliknite za ponastavitev preoblikovanja)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Prevedi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Poskusite iskati z drugimi ključnimi besedami." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Za ukaze vtipkajte \"/\"" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Naloži dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Naložite sliko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Oblika naložene slike ni podprta. Poskusite z: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video koda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videoposnetki" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videoposnetki so utišani, ko je omogočeno samodejno predvajanje" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Prikaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Širina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Napišite nekaj..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Da" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Dokumente lahko naložite z gumbom, ki se nahaja v zgornjem levem kotu " +"zaslona." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Za ustvarjanje priloge morate navesti podatke ali URL." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Približaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Pomanjšaj" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "in" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "samodejno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videoposnetki" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "obravnavanje sporočil spletnega vtičnika" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sq.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sq.po new file mode 100644 index 0000000..c0b9c12 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sq.po @@ -0,0 +1,3388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr.po new file mode 100644 index 0000000..75ba7b8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr.po @@ -0,0 +1,3444 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Uros Kalajdzic , 2022 +# Martin Trigaux, 2022 +# Milan Bojovic , 2025 +# コフスタジオ, 2025 +# Dragan Vukosavljevic , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Dragan Vukosavljevic , 2025\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'Title tag' is shown as a tooltip when you hover the picture." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL or Embed)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 columns" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Stars" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 columns" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 columns" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Stars" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Blocks" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Customize" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Above" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Accepts" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Add Column" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Add Row" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Add URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Upozorenje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Align Center" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Align Left" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Align Right" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Alignment" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Sve" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "All SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "All documents have been loaded" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "All images have been loaded" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Angle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animated" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anoniman" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Primenite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Aspect Ratio" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Prilog" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Attachment URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Autoconvert to relative link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Autoplay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Pozadina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Background Color" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Background Position" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Osnova" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Basic blocks" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Below" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Blok" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocks & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Blur" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Bold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Border" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Border Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Border Style" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Border Width" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Brightness" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Bulleted list" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Button" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Center" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checklist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Choose a record..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Boja" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Color filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Boje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Column" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Common colors" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Potvrda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopiraj link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Copy-paste your URL or embed code here" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Naslovana strana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Kreirajte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Create an URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Crop Image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Prilagođeno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Custom %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Dashed" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Podrazumevano" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Default + Rounded" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Define a custom gradient" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Obriši" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Delete %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Uređaji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Poništi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Discard record" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokumenti" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Dotted" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dvostruko" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Double-click to edit" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Drag and drop the building block." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Duplicate Container" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamic Colors" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamic Placeholder" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "ERROR: couldn't get download urls from media library." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Edit image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Edit media description" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Embed Image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Embed Youtube Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Embed the image in the document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Embed the youtube video in the document." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Empty quote" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Expected " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Extend to the closest corner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Extend to the closest side" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Extend to the farthest corner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Extend to the farthest side" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "File has been uploaded" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Unesite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Fill + Rounded" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Fill Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "First Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Flat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexible" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Flip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Flip Horizontal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Flip Vertical" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Floating shapes" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Font Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Font size" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "For technical reasons, this block cannot be dropped here" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Ceo ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP rutiranje" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Header 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Header 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Header 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Header 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Header 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Heading 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Heading 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Heading 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Heading 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Heading 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Heading 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Visina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Hide Dailymotion logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Hide fullscreen button" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Hide player controls" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Hide sharing button" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikona" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Icon Formatting" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Icon size 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Icon size 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Icon size 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Icon size 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Icon size 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Icons" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustrations" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Slika" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Image Formatting" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Image Height" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Image Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Image Width" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Image padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Slike" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Insert above" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Insert below" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Insert left" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Insert media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Insert or edit link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Insert personalized content" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Insert right" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Instaliraj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Install %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Invalid field value for %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Invisible Elements" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Item" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS file: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Veliko" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Poslednja izmena dana" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Poslednje izmenio/la" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Poslednje ažuriranje dana" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Levo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linearno" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "redova" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Veza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Link Label" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Link je kopiran na računar." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Učitaj više..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Glavna boja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marketinški alati" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Mediji" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Posrednik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Više informacija o ovoj aplikaciji." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Pomeri dole" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Pomeri levo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Pomeri desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Pomeri nagore" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Moje slike" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Ime" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigacija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ne" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Nije naveden URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Nisu pronađeni dokumenti." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Nisu pronađene slike." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "No location to drop in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "No more records" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "No pictograms found." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Ništa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Uobičajen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Numbered list" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Editor Tests" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Only Custom SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Only Page SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Only Views" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Open in new window" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimized" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Original (unoptimized, unresized) attachment" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Origins" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Outline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Outline + Rounded" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Page Options" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Paste as URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Patterns" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pozicija" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Pregled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primary" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvalitet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Quote" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb Field" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb Field Contact" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Field Date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Field Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb Field Duration" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb Field Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Field HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Field Image" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb Field Integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Field Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Field Monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Field Relative" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb Field Selection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Field Text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Field qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radial" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Readonly field" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Redirect the user elsewhere when he clicks on the media." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Remove (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Remove Block" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Remove Current" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Remove Selected Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Remove columns" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Remove format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Remove link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Rename %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Repeat pattern" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Zameni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Replace media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Resetuj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Reset Image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Reset crop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Reset transformation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Reseting views is not supported yet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Resize Default" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Resize Full" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Resize Half" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Resize Quarter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Desno" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotate Left" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotate Right" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Row" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS fajl: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Zasićenost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Sačuvaj" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Save and Install" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Sačuvajte i ponovo učitajte" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Save record" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Search a document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Search a pictogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Search an image" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Search for a block (e.g. numbers, image wall, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Search for records..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Search more..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Search to show more records" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secondary" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Select a block on your page to style it." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Select a media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Server error" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Shadow" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Shape" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Shape: Circle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Shape: Rounded" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Shape: Thumbnail" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Show optimized images" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Potpis" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Veličina" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Size 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Size 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Size 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Size 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Size 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Malo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solids" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Specials" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktura" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Predlozi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Switch direction" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Sto" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Table Options" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Template ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Tekst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Text Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Text align" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Text style" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "The URL does not seem to work." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "The URL seems valid." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "The datetime %s does not match the format %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "The provided url does not reference any supported video" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "The provided url is invalid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "The provided url is not valid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Theme colors" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "There is a conflict between your version and the one in the database." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "This URL is invalid. Preview couldn't be updated." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "This document is not saved!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "This file is a public view attachment." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "This file is attached to the current record." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "This image is an external image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Naslov" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Title tag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Toggle bold" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Toggle checklist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Toggle icon spin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Toggle italic" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Toggle ordered list" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Toggle strikethrough" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Toggle underline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Toggle unordered list" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tooltip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Transform" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Transform the picture" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Transform the picture (click twice to reset transformation)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Prevedi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparent colors" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Try searching with other keywords." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Vrsta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Type \"/\" for commands" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL or Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Unalign" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Unexpected " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Upload a document" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Upload an image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Uploaded image's format is not supported. Try with: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Uploaded image's format is not supported. Try with: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Video Formatting" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videos are muted when autoplay is enabled" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Pregled" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Views and Assets bundles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Wavy" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editor Converter Subtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor Converter Test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Širina" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Write something..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Da" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"You can upload documents with the button located in the top left of the " +"screen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "You need to specify either data or url to create an attachment." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Your URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zoom In" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zoom Out" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "add" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "i" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "darken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusion" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "lighten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiply" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "overlay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "screen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket rukovanje porukama" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr@latin.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr@latin.po new file mode 100644 index 0000000..f27762e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sr@latin.po @@ -0,0 +1,1731 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux , 2017 +# Nemanja Dragovic , 2017 +# Djordje Marjanovic , 2017 +# Ljubisa Jovev , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:54+0000\n" +"PO-Revision-Date: 2017-09-20 09:54+0000\n" +"Last-Translator: Ljubisa Jovev , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:193 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:922 +#, python-format +msgid "(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25% Black" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25% White" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "50% Black" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "50% White" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "75% Black" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "75% White" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid " First Panel" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:569 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is well-formed." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:974 +#, python-format +msgid "Action" +msgstr "Akcija" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:114 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:111 +#, python-format +msgid "Add an image URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Add blocks" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:956 +#, python-format +msgid "Align center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:955 +#, python-format +msgid "Align left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:957 +#, python-format +msgid "Align right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Alpha" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:99 +#, python-format +msgid "Alternate Upload" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:315 +#, python-format +msgid "Assign a focal point that will always be visible" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment_local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:11 +#, python-format +msgid "Auto size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:204 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:963 +#: code:addons/web_editor/static/src/xml/snippets.xml:32 +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:964 +#, python-format +msgid "Background Image Sizing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:354 +#, python-format +msgid "Background height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:364 +#, python-format +msgid "Background position" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:386 +#, python-format +msgid "Background repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:342 +#, python-format +msgid "Background size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:345 +#, python-format +msgid "Background width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Beta" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Black" +msgstr "Crna" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:204 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:883 +#, python-format +msgid "Bold" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:827 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:95 +#, python-format +msgid "Center" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:55 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:972 +#: code:addons/web_editor/static/src/js/editor/translator.js:52 +#: code:addons/web_editor/static/src/xml/ace.xml:30 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:934 +#, python-format +msgid "Code" +msgstr "Šifra" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:949 +#, python-format +msgid "Code View" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:265 +#, python-format +msgid "Color" +msgstr "Boja" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:202 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:61 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:310 +#, python-format +msgid "Contain" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:7 +#, python-format +msgid "Content to translate" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:194 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:309 +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:311 +#, python-format +msgid "Custom" +msgstr "Prilagođeno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:19 +#, python-format +msgid "Customize" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Danger" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/summernote.js:1899 +#, python-format +msgid "Default" +msgstr "Podrazumevano" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:387 +#, python-format +msgid "Define if/how the background image will be repeated" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Delta" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:165 +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:34 +#, python-format +msgid "Description (alt tag)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:968 +#: code:addons/web_editor/static/src/js/widgets/widgets.js:24 +#: code:addons/web_editor/static/src/xml/editor.xml:12 +#: code:addons/web_editor/static/src/xml/editor.xml:140 +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:51 +#, python-format +msgid "Document" +msgstr "Dokument" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:976 +#, python-format +msgid "Document Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:860 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:903 +#, python-format +msgid "Drag an image here" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:22 +#, python-format +msgid "Drag to Move" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:23 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:151 +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:912 +#, python-format +msgid "Edit" +msgstr "Uredi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Epsilon" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:93 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:257 +#, python-format +msgid "Extra Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:895 +#, python-format +msgid "File / Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:12 +#, python-format +msgid "Fixed size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:900 +#, python-format +msgid "Float Left" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:902 +#, python-format +msgid "Float None" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:901 +#, python-format +msgid "Float Right" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:964 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:891 +#, python-format +msgid "Font Family" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:892 +#, python-format +msgid "Font Size" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:37 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:948 +#, python-format +msgid "Full Screen" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gamma" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Dark" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Darker" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Light" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Gray Lighter" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP routing" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:935 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:936 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:937 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:938 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:939 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:940 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:947 +#, python-format +msgid "Help" +msgstr "Pomoć" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:5 +#, python-format +msgid "Here are the visuals used to help you translate efficiently:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:219 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:216 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:213 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:210 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:222 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:367 +#, python-format +msgid "Horizontal" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/editor.js:125 +#, python-format +msgid "" +"If you discard the current edition, all unsaved changes will be lost. You " +"can cancel to return to the edition mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:826 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:50 +#, python-format +msgid "Image" +msgstr "Slika" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:905 +#, python-format +msgid "Image URL" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:10 +#, python-format +msgid "" +"In this mode, you can only translate texts. To change the structure of the page, you must edit the master page.\n" +" Each modification on the master page is automatically applied to all translated versions." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:23 +#, python-format +msgid "Include All LESS Files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:17 +#, python-format +msgid "Include Asset Bundles" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:954 +#, python-format +msgid "Indent" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Info" +msgstr "Informacije" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:928 +#, python-format +msgid "Insert Horizontal Rule" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:896 +#, python-format +msgid "Insert Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:910 +#, python-format +msgid "Insert Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:920 +#, python-format +msgid "Insert Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Instagram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:1028 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:884 +#, python-format +msgid "Italic" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:958 +#, python-format +msgid "Justify full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:971 +#, python-format +msgid "Keyboard shortcuts" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:11 +#, python-format +msgid "LESS (CSS)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:109 +#: code:addons/web_editor/static/src/xml/editor.xml:260 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub___last_update +msgid "Last Modified on" +msgstr "Zadnja promena" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_uid +msgid "Last Updated by" +msgstr "Promenio" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_write_date +msgid "Last Updated on" +msgstr "Vreme promene" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:360 +#, python-format +msgid "Less file: %s" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:890 +#, python-format +msgid "Line Height" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:909 +#, python-format +msgid "Link" +msgstr "Veza" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:242 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:1085 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:207 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:108 +#: code:addons/web_editor/static/src/xml/editor.xml:259 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:962 +#, python-format +msgid "More Color" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub_name +msgid "Name" +msgstr "Naziv" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:60 +#, python-format +msgid "Next" +msgstr "Sledeće" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:389 +#, python-format +msgid "No repeat" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:106 +#: code:addons/web_editor/static/src/xml/snippets.xml:34 +#, python-format +msgid "None" +msgstr "Prazno" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:932 +#, python-format +msgid "Normal" +msgstr "Normalni" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:967 +#: code:addons/web_editor/static/src/js/editor/translator.js:94 +#, python-format +msgid "Ok" +msgstr "Ok" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/translator.js:93 +#, python-format +msgid "Ok, never show me this again" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:915 +#: code:addons/web_editor/static/src/xml/editor.xml:286 +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:201 +#, python-format +msgid "Options" +msgstr "Opcije" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:944 +#, python-format +msgid "Ordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:953 +#, python-format +msgid "Outdent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:113 +#, python-format +msgid "Padding" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:952 +#, python-format +msgid "Paragraph" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:975 +#, python-format +msgid "Paragraph formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:52 +#, python-format +msgid "Pictogram" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:228 +#: code:addons/web_editor/static/src/xml/editor.xml:294 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:57 +#, python-format +msgid "Previous" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Primary" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:933 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.js:307 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:961 +#, python-format +msgid "Recent Color" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:980 +#, python-format +msgid "Redo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:155 +#, python-format +msgid "Remove" +msgstr "Ukloni" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:24 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:889 +#, python-format +msgid "Remove Font Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:906 +#, python-format +msgid "Remove Image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:329 +#, python-format +msgid "Repeat" +msgstr "Ponovi" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:390 +#, python-format +msgid "Repeat both" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:391 +#, python-format +msgid "Repeat x" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:392 +#, python-format +msgid "Repeat y" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:967 +#: code:addons/web_editor/static/src/xml/ace.xml:36 +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:968 +#, python-format +msgid "Reset to default" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:485 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:897 +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:898 +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:899 +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:12 +#, python-format +msgid "Resize to force the height of this block" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:23 +#: code:addons/web_editor/static/src/xml/ace.xml:29 +#: code:addons/web_editor/static/src/xml/editor.xml:13 +#, python-format +msgid "Save" +msgstr "Sačuvaj" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:49 +#, python-format +msgid "Search" +msgstr "Pronađi" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:47 +#, python-format +msgid "Search Contact" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/snippets.xml:17 +#, python-format +msgid "Select Parent Container" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:930 +#, python-format +msgid "Select a Media" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:133 +#, python-format +msgid "Select a Picture" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:904 +#, python-format +msgid "Select from files" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:567 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:365 +#, python-format +msgid "Set the starting position of the background image." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:966 +#, python-format +msgid "Set transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:343 +#, python-format +msgid "" +"Sets the width and height of the background image in percent of the parent " +"element." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:120 +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:254 +#, python-format +msgid "Size" +msgstr "Veličina" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:107 +#: code:addons/web_editor/static/src/xml/editor.xml:258 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:128 +#, python-format +msgid "Spin" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:886 +#, python-format +msgid "Strikethrough" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:931 +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:887 +#, python-format +msgid "Subscript" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Success" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:888 +#, python-format +msgid "Superscript" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:925 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:358 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:973 +#, python-format +msgid "Text formatting" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:913 +#, python-format +msgid "Text to display" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:158 +#, python-format +msgid "" +"The image could not be deleted because it is used in the\n" +" following pages or views:" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:871 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/widgets.js:865 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:53 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/editor.js:85 +#: code:addons/web_editor/static/src/js/editor/translator.js:177 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:914 +#, python-format +msgid "To what URL should this link go?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:40 +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/translator.js:50 +#, python-format +msgid "Translate Attribute" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:8 +#, python-format +msgid "Translated content" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/translator.js:91 +#, python-format +msgid "Translation Info" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:965 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Transparent" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:248 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:885 +#, python-format +msgid "Underline" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:979 +#, python-format +msgid "Undo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/widgets/ace.js:86 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:911 +#, python-format +msgid "Unlink" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:943 +#, python-format +msgid "Unordered list" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:96 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:103 +#, python-format +msgid "Upload image without optimization" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:107 +#, python-format +msgid "Uploading..." +msgstr "Učitavanje..." + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:376 +#, python-format +msgid "Vertical" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:918 +#: code:addons/web_editor/static/src/xml/editor.xml:53 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:919 +#, python-format +msgid "Video Link" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:921 +#, python-format +msgid "Video URL?" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:193 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Vine.co" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Warning" +msgstr "Upozorenje" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "White" +msgstr "Bijela" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/ace.xml:8 +#: code:addons/web_editor/static/src/xml/ace.xml:10 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/js/editor/rte.summernote.js:110 +#, python-format +msgid "Xl" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/translator.xml:4 +#, python-format +msgid "You are about to enter the translation mode." +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:348 +#: code:addons/web_editor/static/src/xml/editor.xml:357 +#: code:addons/web_editor/static/src/xml/editor.xml:370 +#: code:addons/web_editor/static/src/xml/editor.xml:379 +#, python-format +msgid "auto" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:113 +#, python-format +msgid "https://www.odoo.com/logo.png" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "ir.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "ir.qweb.field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "ir.qweb.field.contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "ir.qweb.field.date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "ir.qweb.field.datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "ir.qweb.field.duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "ir.qweb.field.float" +msgstr "ir.qweb.field.float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "ir.qweb.field.html" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "ir.qweb.field.image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "ir.qweb.field.integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "ir.qweb.field.many2one" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "ir.qweb.field.monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "ir.qweb.field.qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "ir.qweb.field.relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "ir.qweb.field.selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "ir.qweb.field.text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:198 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "web_editor.converter.test" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "web_editor.converter.test.sub" +msgstr "" + +#. module: web_editor +#. openerp-web +#: code:addons/web_editor/static/src/xml/editor.xml:110 +#, python-format +msgid "— or —" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sv.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sv.po new file mode 100644 index 0000000..8880945 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sv.po @@ -0,0 +1,3470 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Wilderoth , 2022 +# Robin Calvin, 2022 +# Robert Frykelius , 2022 +# Haojun Zou , 2022 +# Jakob Krabbe , 2022 +# Daniel Osser , 2022 +# Kristoffer Grundström , 2022 +# Simon S, 2022 +# Daniel Löfgren, 2022 +# Chrille Hedberg , 2022 +# Kim Asplund , 2022 +# Martin Trigaux, 2022 +# Mikael Åkerberg , 2023 +# Patrik Lermon , 2023 +# Simon Nilsson, 2023 +# Lasse L, 2023 +# Anders Wallenquist , 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Föreslagen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' anger en alternativ text för en bild, om bilden inte kan visas " +"(långsam anslutning, saknad bild, skärmläsare ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Title tag' visas som ett verktygstips när du för muspekaren över bilden." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL eller inbäddad)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 kolumner" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 stjärnor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 kolumner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 kolumner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 stjärnor" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Block" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Anpassa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Ett serverfel inträffade. Vänligen kontrollera att du har loggat in korrekt " +"och att filen du sparar är korrekt formaterad." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Ovan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Acceptera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Lägg till" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Infoga kolumn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Lägg till Rad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Infoga URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Lägg till en sektion med blockcitat." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Lägg till en knapp." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Lägg till ett kodavsnitt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Lägg till kolumn till vänster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Lägg till kolumn till höger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Lägg till en länk." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Infoga rad före" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Infoga rad efter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Varning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Centrera" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Vänsterjustera" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Högerjustera" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Justering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Alla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Alla SCSS filer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Alla dokument har laddats" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Alla bilder har laddats" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Vinkel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animerad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Anonym" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Verkställ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Är du säker på att du vill radera blocket: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Är du säker på att du vill radera filen ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Bildförhållande" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Tillgångar Nyttjande" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Bilaga" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Bilage-URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Autokonvertera till relativ länk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Spela automatiskt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Tillbaka till en kolumn." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Bakgrund" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Bakgrundsfärg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Bakgrundsposition" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Bas" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Grundläggande block" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Grunder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Nedan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Stor sektionsrubrik." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobbar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Block" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Block och regn" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Oskärpa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Fet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Ram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Kantfärg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Kantstil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Kantbredd" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Ljusstyrka" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Punktlista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Knapp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Försiktigt !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Centrera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Ändra mediabeskrivning och verktygstips" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checklista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Välj en post..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Stäng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Färg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Färgfilter" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Färger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Kolumn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Vanliga färger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Bekräfta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Bekräftelse" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Konflikt om innehåll" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Omvandlas till 2 kolumner." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Konvertera till 3 kolumner." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Konvertera till 4 kolumner." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Kopiera länk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Kopiera och klistra in din URL/infoga kod här" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Modul gick inte att installera %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Det gick inte att ladda filen \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Omslag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Skapa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Skapa en lista med numrering." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Skapa en enkel punktlista." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Skapa en URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Skapad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Beskär bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Anpassad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Anpassad %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Streckad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Standard" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Standard + avrundad" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Anpassa gradient" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Ta bort" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Radera %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Radera aktuell tabell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Beskrivning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Enheter" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Avbryt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Kasera post" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Vill du installera %s appen?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Prickad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Dubbel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Dubbelklicka för att redigera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Dra och släpp byggklossarna." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Kopiera behållaren" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dynamiska färger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dynamisk platshållare" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "ERROR: kan inte ladda ned url från mediabiblioteket." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Redigera länk" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Redigera bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Redigera mediabeskrivning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Det är inte rekommenderat att redigera en inbyggd fil med den här editorn, " +"eftersom det förhindrar att den uppdateras vid framtida uppgraderingar av " +"appen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Bädda in bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Bädda in Youtube-video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Bädda in bilden i dokumentet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Bädda in youtube-videon i dokumentet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Tomt citat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Förväntad " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Förläng till närmsta hörn" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Förläng till närmsta sida" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Förläng till bortersta hörnet" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Förläng till bortersta sidan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Filen är uppdaterad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Fyll" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Fyll + Avrunda" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Fyllningsfärg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtrera" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Första panelen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Flat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Flexibel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Vänd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Vänd horisontellt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Vänd vertikalt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Flytande former" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Flyttal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Typsnittsfärg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Typsnittsstorlek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Av tekniska skäl kan detta block inte släppas här" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Format" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Helskärm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Hitta den perfekta bilden genom att söka i vårt bibliotek med " +"upphovsrättsfria foton och illustrationer." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-rutt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Header 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Header 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Header 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Header 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Header 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Rubrik 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Rubrik 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Rubrik 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Rubrik 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Rubrik 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Rubrik 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Höjd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Göm Dailymotion logo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Göm helskärmsknapp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Göm spelarknappar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Göm dela knapp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Redigera ikon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Icon size 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Ikonstorlek 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Ikonstorlek 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Ikonstorlek 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Ikonstorlek 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Ikoner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Om du går ur redigeringsläget så kommer alla osparade ändringar att " +"försvinna. Du kan avbryta för att återgå till redigeringsläget." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Om du återställer denna fil kommer alla dina anpassningar att gå förlorade " +"eftersom den kommer att återställas till standardfilen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Illustrationer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Formatering av bilder" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Bildhöjd" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Bild Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Bild brädd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Bild utfyllnad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Bilder" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Inline-text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Infoga ett betyg över 3 stjärnor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Infoga ett betyg över 5 stjärnor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Infoga en tabell." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Infoga en video." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Infoga ovan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Infoga en horisontell regelavgränsare." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Infoga en bild." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Infoga nedan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Infoga vänster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Infoga media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Infoga eller redigera länk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Infoga individuellanpassat innehåll" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Infoga höger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Infoga tabell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Infoga din signatur." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Installera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Installera %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Installationen pågår" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Ogiltigt fältvärde för %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Osynliga element" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Objekt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS fil: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Stor" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Senast redigerad den" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad på" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Vänster" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Linjär" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Rader" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Länk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Länketikett" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Länken kopierad till urklipp." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Länk till" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Ladda mer..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Huvudfärg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Marknadsföringsverktyg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Medium" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Medium rubrik för avsnitt." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Mer information om denna app." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Flytta ner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Flytta till vänster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Flytta till höger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Flytta upp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Mina bilder" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Namn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Nej" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Ingen URL angiven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Inga dokument har hittats." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Inga bilder hittades." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Ingen plats för drop in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Inga fler register" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Inga piktogram hittades." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Inga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Numrerad lista" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Tester av Odoo Editor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Endast anpassade SCSS-filer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Endast sida SCSS-filer" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Endast visningar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Öppna i en ny flik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Öppna i nytt fönster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Optimerad" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Originalbilaga (ej optimerad, ej storleksanpassad)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Kedja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Översikt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Kontur + rundad" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Mellanrum" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Sidalternativ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Stycke block." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Klistra in som URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Mönster" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Tjänst" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Förhandsgranskning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Primär" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu’est-ce qu’il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu’il n’est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kvalitet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Citat" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb-fält" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb fältkontakt" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb fält Datum" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb-fältet Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb Field Varaktighet" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb Field Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Field HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb fältbild" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb-fältet heltal" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Field Många till en" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Field Monetär" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Field Relativ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Val av Qweb-fält" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb fälttext" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Field qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radiell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Läsbart fält" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Omdirigera användaren någon annanstans när han klickar på mediet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Ta bort (DELETE)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Tag bort block" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Ta bort aktuell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Ta bort länken" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Ta bort vald färg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Ta bort kolumner" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Ta bort aktuell kolumn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Ta bort aktuell rad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Ta bort formatering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Ta bort länken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Byt namn på %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Upprepa mönster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Ersätt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Byta ut media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Återställ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Återställ bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Återställ storlek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Återställ beskärning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Återställ transformation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Återställning av vyer stöds ännu inte" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Ändra storlek på standard" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Ändra storlek (Full Storlek)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Ändra storlek (Hälften)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Ändra storlek (1/4)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Höger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Rotera vänster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Rotera höger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Rad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS-fil: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Saturation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Spara" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Spara och installera" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Spara och ladda om" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Spara post" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Sök i ett dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Sök efter ett piktogram" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Sök efter en bild" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Sök efter ett block (t.ex. nummer, bildvägg, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Sök efter register..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Sök mer..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Sök för att visa fler poster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Sekundär" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Välj ett block på din sida för att utforma det." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Välj ett media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Separator" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Serverfel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Skugga" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Form" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Form: Cirkel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Form: Rundad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Form: Miniatyrbild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Visa optimerade bilder" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Signatur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Storlek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Storlek 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Storlek 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Storlek 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Storlek 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Storlek 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Liten" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Liten sektionsrubrik." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Solid" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solider" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Någon med uppgraderade rättigheter har tidigare modifierat detta område, du " +"kan därför inte modifiera det själv." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Special" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Struktur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Förslag" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Växla riktning" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Byt riktning på texten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Tabell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Tabellalternativ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Tabellverktyg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Mall-ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Textfärg" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Text justering" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Textstil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL:en verkar inte fungera." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL:en verkar vara giltig." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Datum och tid %s matchar inte formatet %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Dokumentet har redan sparats av någon med en annan historik för modellen %r," +" fältet %r med id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Den angivna webbadressen refererar inte till någon video som stöds" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Den angivna webbadressen är ogiltig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Den angivna webbadressen är inte giltig" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Den version som finns i databasen kommer att användas.\n" +" Om du vill behålla dina ändringar kopierar du innehållet nedan och redigerar det nya dokumentet." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Temafärger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" +"Det finns en konflikt mellan din version och den som finns i databasen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Denna URL är ogiltig. Förhandsgranskningen kunde inte uppdateras." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Detta block är föråldrat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Dokumented är inte sparat!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Denna fil är en offentlig bilaga." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Denna fil bifogas det aktuella posten." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Denna bild är en extern bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Denna typ av bild stöds inte för beskärning.
Om du vill beskära den, " +"ladda först ner den från originalkällan och ladda upp den i Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Titel" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Titel taggen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"För att göra ändringar, släpp detta block och använd de nya alternativen i " +"den senaste versionen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"För att spara ett block måste vi spara alla dina tidigare ändringar och " +"ladda om sidan." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Att göra" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Brödrost" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Växla till fet stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Checklista för växling" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Växla ikonens rotation" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Växla kursiv stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Växla till ordnad lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Växla genomstruken text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Växla understruken text" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Växla oordnad lista" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Tips" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Håll koll på uppgifterna med en checklista." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Omvandla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Förändra bilden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Förvandla bilden (klicka två gånger för att återställa förvandlingen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Översätt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparenta färger" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Försök att söka med andra nyckelord." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Typ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Skriv \"/\" för kommandon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL eller e-post" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Ojusterad" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Oväntad " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Ladda upp ett dokument" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Ladda upp en bild" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Den uppladdade bildens format stöds inte. Försök med: " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Den uppladdade bildens format stöds inte. Försök med: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Formatering av video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Videokod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videor" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videoklipp är ljudlösa när autouppspelning är aktiverad" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Visa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Paket med Views och Assets" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Varning: Efter att ha stängt den här dialogrutan kommer den version du " +"arbetade med att kastas bort och kommer aldrig vara tillgänglig igen." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Wavy" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Webbredigerarens konverteringsdeltest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Webbredigerare Konverteringstest" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Widgets" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Bredd" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Skriv någonting..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Ja" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Du kan ladda upp dokument med knappen som finns längst upp till vänster på " +"skärmen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Du kan ladda upp bilder med knappen som finns längst upp till vänster på " +"skärmen." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Du måste ange antingen data eller url för att skapa en bilaga." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zooma in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zooma ut" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "lägg till" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "och" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "auto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "mörkna" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "standard" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "uteslutning" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "lätta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiplicera" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "överlagring" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "skärm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket meddelandehantering" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sw.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sw.po new file mode 100644 index 0000000..9b54e9f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/sw.po @@ -0,0 +1,3388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sw\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ta.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ta.po new file mode 100644 index 0000000..a1933b1 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/ta.po @@ -0,0 +1,3388 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-06 13:32+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#. module: web_editor +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Youtube logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/th.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/th.po new file mode 100644 index 0000000..d27732d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/th.po @@ -0,0 +1,3447 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Amin Cheloh , 2022 +# Odoo Thaidev , 2022 +# Khwunchai Jaengsawang , 2022 +# Wichanon Jamwutthipreecha, 2022 +# Martin Trigaux, 2023 +# Rasareeyar Lappiam, 2024 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (ต้นฉบับ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (แนะนำ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'แท็ก Alt' ระบุข้อความสำรองสำหรับรูปภาพ หากไม่สามารถแสดงรูปภาพได้ " +"(การเชื่อมต่อช้า รูปภาพหายไป โปรแกรมอ่านหน้าจอ ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'แท็กชื่อ' จะแสดงเป็นคำแนะนำเครื่องมือเมื่อคุณวางเมาส์เหนือรูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT แท็ก)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE แท็ก)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL หรือ ฝัง)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 คอลัมน์" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 ดาว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 คอลัมน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 คอลัมน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 ดาว" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "องศา" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "บล็อก" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "ปรับแต่ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"เกิดข้อผิดพลาดของเซิร์ฟเวอร์ โปรดตรวจสอบว่าคุณลงชื่อเข้าใช้ถูกต้อง " +"และไฟล์ที่คุณบันทึกมีรูปแบบที่ถูกต้อง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "เหนือ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "ยอมรับ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "เพิ่ม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "เพิ่มคอลัมน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "เพิ่มแถว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "เพิ่ม URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "เพิ่มคอลัมน์ทางซ้าย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "เพิ่มคอลัมน์ขวา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "เพิ่มแถวด้านบน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "เพิ่มแถวด้านล่าง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "การเตือน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "จัดกึ่งกลาง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "จัดชิดซ้าย" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "จัดชิดขวา" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "การจัดตำแหน่ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "ทั้งหมด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "ไฟล์ SCSS ทั้งหมด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "โหลดเอกสารทั้งหมดแล้ว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "โหลดรูปภาพทั้งหมดแล้ว" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "แท็ก Alt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "มุม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "เคลื่อนไหว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "ผู้ใช้นิรนาม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "นำไปใช้" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "คุณแน่ใจหรือว่าต้องการลบตัวอย่างข้อมูล: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบไฟล์นี้ ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "อัตราส่วนภาพ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "การแนบ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "แนบไฟล์ URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "แปลงอัตโนมัติเป็นลิงก์ที่เกี่ยวข้อง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "เล่นอัตโนมัติ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "พื้นหลัง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "สีพื้นหลัง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "ตำแหน่งในพื้นหลัง" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "ฐาน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "บล็อกพื้นฐาน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "พื้นฐาน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "ด้านล่าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "บล็อบส์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "บล็อก" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Blocks & Rainy" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "เบลอ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "ตัวหนา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "กรอบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "สีเส้นขอบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "สไตล์เส้นขอบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "ความกว้างเส้นขอบ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "แบรนแนน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "ความสว่าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "รายการหัวข้อย่อย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "ปุ่ม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "ระมัดระวัง !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "กลาง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "เปลี่ยนคำอธิบายสื่อและคำแนะนำเครื่องมือ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "รายการตรวจสอบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "เลือกบันทึก..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "ปิด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "โค้ด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "สี" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "ตัวกรองสี" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "สี" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "คอลัมน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "สีทั่วไป" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "ยืนยัน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "การยืนยัน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "เปรียบต่าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "คัดลอกลิงก์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "คัดลอกและวาง URL หรือโค้ดสำหรับฝังที่นี่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "ไม่สามารถติดตั้งโมดูล %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "ไม่สามารถโหลดไฟล์ \"%s\" ได้" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "หน้าปก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "สร้าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "สร้าง URL" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "ตัดรูป" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "กำหนดเอง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "กำหนดเอง %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "เส้นประ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "เริ่มต้น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "ค่าเริ่มต้น + โค้งมน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "กำหนดการไล่สีที่กำหนดเอง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "ลบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "ลบ %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "ลบตารางปัจจุบัน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "คำอธิบาย" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "อุปกรณ์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "ละทิ้ง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "ละทิ้งบันทึก" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "แสดงชื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "คุณต้องการติดตั้ง %s แอป?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "เอกสาร" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "เส้นจุด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "สองเส้น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "ดับเบิ้ลคลิกเพื่อแก้ไข" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "ลากและวางแบบเอกสารสำเร็จรูป" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "คอนเทนเนอร์ที่ซ้ำกัน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "สีไดนามิก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "ตัวยึดตำแหน่งแบบไดนามิก" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "ข้อผิดพลาด: ไม่สามารถรับ URL ที่ดาวน์โหลดจากคลังสื่อ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "แก้ไขลิงก์" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "แก้ไขภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "แก้ไขคำอธิบายสื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"ไม่แนะนำให้แก้ไขไฟล์ในตัวผ่านตัวแก้ไขนี้ " +"เนื่องจากจะป้องกันไม่ให้มีการอัปเดตในระหว่างการอัปเกรดแอปในอนาคต" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "ฝังรูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "ฝังวิดีโอ Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "ฝังรูปภาพในเอกสาร" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "ฝังวิดีโอ YouTube ลงในเอกสาร" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "ใบเสนอราคาที่ว่างเปล่า" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "คาดหวัง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "ขยายไปยังมุมที่ใกล้ที่สุด" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "ขยายไปยังด้านที่ใกล้ที่สุด" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "ขยายไปยังมุมที่ไกลที่สุด" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "ขยายออกไปด้านที่ไกลที่สุด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "ไฟล์ได้รับการอัปโหลด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "เติม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "เติม + โค้งมน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "เติมสี" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "ตัวกรอง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "แผงแรก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "คงที่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "ยืดหยุ่นได้" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "พลิก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "พลิกแนวนอน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "พลิกแนวตั้ง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "รูปร่างลอยตัว" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "ลอยตัว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "สีฟอนต์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "ขนาดฟอนต์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "สำหรับเหตุผลทางเทคนิค บล็อกนี้ไม่สามารถถูกวางที่นี่ได้" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "รูปแบบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "แบบเต็มหน้าจอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"รับภาพที่สมบูรณ์แบบโดยการค้นหาในคลังรูปภาพและภาพประกอบปลอดลิขสิทธิ์ของเรา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "การไล่สี" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "การกำหนด HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "ส่วนหัว 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "ส่วนหัว 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "ส่วนหัว 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "ส่วนหัว 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "ส่วนหัว 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "ส่วนหัว 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "ส่วนหัว 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "ส่วนหัว 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "ส่วนหัว 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "หัวเรื่อง 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "หัวเรื่อง 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "หัวเรื่อง 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "ความสูง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "ซ่อนโลโก้ Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "ปุ่มซ่อนเต็มหน้าจอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "ซ่อนการควบคุมผู้เล่น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "ซ่อนปุ่มแชร์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ไอดี" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "ไอคอน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "การจัดรูปแบบไอคอน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "ขนาดไอคอน 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "ขนาดไอคอน 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "ขนาดไอคอน 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "ขนาดไอคอน 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "ขนาดไอคอน 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "ไอคอน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"หากคุณละทิ้งการแก้ไขปัจจุบัน การเปลี่ยนแปลงที่ไม่ได้บันทึกทั้งหมดจะสูญหายไป " +"คุณสามารถยกเลิกเพื่อกลับสู่โหมดแก้ไข" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"หากคุณรีเซ็ตไฟล์นี้ " +"การปรับแต่งทั้งหมดของคุณจะหายไปเนื่องจากจะถูกเปลี่ยนกลับเป็นไฟล์เริ่มต้น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "ภาพประกอบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "รูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "การจัดรูปแบบภาพ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "ความสูงของภาพ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "รูปภาพ Src" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "ความกว้างรูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "แพดดิ้งรูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "รูปภาพ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "ข้อความแบบอินไลน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "แทรกด้านบน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "แทรกด้านล่าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "แทรกด้านซ้าย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "แทรกสื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "แทรกหรือแก้ไขลิงก์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "แทรกเนื้อหาส่วนบุคคล" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "แทรกด้านขวา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "แทรกตาราง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "ติดตั้ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "ติดตั้ง %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "อยู่ระหว่างการติดตั้ง" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "ค่าฟิลด์ไม่ถูกต้องสำหรับ%s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "องค์ประกอบที่มองไม่เห็น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "รายการ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "ไฟล์ JS : %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "ใหญ่" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งล่าสุดเมื่อ" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "อัปเดตครั้งล่าสุดโดย" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "อัปเดตครั้งล่าสุดเมื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "ซ้าย" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "เชิงเส้น" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "ไลน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "ลิงก์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "ป้ายลิงก์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "คัดลอกลิงก์ไปยังคลิปบอร์ด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "ลิงก์ไป" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "รายการ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "โหลดเพิ่ม..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "ห่วง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "สีหลัก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "เครื่องมือทางการตลาด" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "มีเดีย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "สื่อกลาง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "ข้อมูลเพิ่มเติมเกี่ยวกับแอปนี้" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "เลื่อนลง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "เลื่อนไปทางซ้าย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "เลื่อนไปทางขวา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "เลื่อนขึ้น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "รูปภาพของฉัน" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "ชื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "การนำทาง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "ไม่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "ไม่ระบุ URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "ไม่พบเอกสาร" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "ไม่พบรูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "ไม่มีตำแหน่งที่จะวางใน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "ไม่มีบันทึกเพิ่มเติม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "ไม่พบรูปภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "ไม่มี" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "ปกติ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "รายการที่มีเลข" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "การทดสอบตัวแก้ไข Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "เฉพาะไฟล์ SCSS ที่กำหนดเอง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "เฉพาะไฟล์ SCSS หน้า" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "เฉพาะการดู" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "เปิดในแท็บใหม่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "เปิดหน้าต่างใหม่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "ปรับให้เหมาะสม" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "ต้นฉบับ (ไม่ได้ปรับให้เหมาะสม ไม่ได้ปรับขนาด) แนบไฟล์" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "แหล่งที่มา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "เค้าโครง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "เค้าโครง + โค้งมน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "แพดดิ้ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "ตัวเลือกหน้า" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "วางเป็น URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "แบบแผน" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "ตำแหน่ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "ตัวอย่าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "หลัก" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "คุณภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "อ้างอิง" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "ฟิลด์ QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "ฟิลด์ติดต่อ QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "ฟิลด์วันที่ QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "ฟิลด์วันที่เวลา Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "ฟิลด์ระยะเวลา QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "ฟิลด์ทศนิยม Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "ฟิลด์ HTML Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "ฟิลด์รูปภาพ QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "ฟิลด์จำนวนเต็ม Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "ฟิลด์ Qweb Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "ฟิลด์ Qweb Monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "ฟิลด์เกี่ยวข้อง Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "การเลือกฟิลด์ QWeb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "ฟิลด์ข้อความ Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Field qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "เรเดียล" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "ฟิลด์อ่านได้อย่างเดียว" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "เปลี่ยนเส้นทางผู้ใช้ไปที่อื่นเมื่อเขาคลิกที่สื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "นำออก (ลบ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "นำบล็อกออก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "นำกระแสออก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "นำลิงก์ออก" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "ลบสีที่เลือก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "ลบคอลัมน์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "ลบคอลัมน์ปัจจุบัน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "นำแถวปัจจุบันออก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "นำรูปแบบออก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "นำลิงก์ออก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "เปลี่ยนชื่อ %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "รูปแบบซ้ำ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "แทนที่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "แทนที่สื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "ตั้งค่าใหม่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "รีเซ็ตภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "รีเซ็ตขนาด" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "รีเซ็ตการตัด" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "รีเซ็ตการเปลี่ยนแปลง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "ยังไม่รองรับการรีเซ็ตมุมมอง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "ปรับขนาดค่าเริ่มต้น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "ปรับขนาดเต็ม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "ปรับขนาดครึ่ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "ปรับขนาดส่วน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "ขวา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "หมุนซ้าย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "หมุนขวา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "แถว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "ไฟล์ SCSS : %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "ความอิ่มตัวสี" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "บันทึก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "บันทึกและติดตั้ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "บันทึกและโหลดซ้ำ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "บันทึกบันทึก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "ค้นหาเอกสาร" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "ค้นหารูปสัญลักษณ์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "ค้นหารูปภาพ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "ค้นหาบล็อก (เช่น ตัวเลข ผนังรูปภาพ ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "ค้นหาบันทึก..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "ค้นหาเพิ่มเติม..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "ค้นหาเพื่อแสดงบันทึกเพิ่มเติม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "รอง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "เลือกบล็อกบนเพจของคุณเพื่อจัดรูปแบบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "เลือกสื่อ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "ตัวแบ่ง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "ซีเปีย" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "เซิร์ฟเวอร์ผิดพลาด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "เงา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "รูปร่าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "รูปร่าง: วงกลม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "รูปร่าง: โค้งมน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "รูปร่าง: ภาพขนาดเล็ก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "แสดงภาพที่ปรับให้เหมาะสมที่สุด" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "ลายเซ็น" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "ไซส์" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "ขนาด 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "ขนาด 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "ขนาด 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "ขนาด 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "ขนาด 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "เล็ก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "ของแข็ง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "ของแข็ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"ผู้ที่มีสิทธิ์ในการยกระดับได้แก้ไขพื้นที่นี้ไปแล้ว " +"คุณไม่สามารถแก้ไขได้ด้วยตนเอง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "พิเศษ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "โครงสร้าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "สไตล์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "ข้อเสนอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "สลับทิศทาง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "โต๊ะ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "ตัวเลือกตาราง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "เครื่องมือตาราง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ไอดีเทมเพลต: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "ข้อความ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "สีข้อความ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "จัดข้อความ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "รูปแบบข้อความ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "ดูเหมือนว่า URL จะไม่ทำงาน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL ดูเหมือนถูกต้อง" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "วันที่และเวลา %s ไม่ตรงกับรูปแบบ %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"เอกสารได้รับการบันทึกแล้วจากบุคคลที่มีประวัติที่แตกต่างกันสำหรับรุ่น %r " +"ฟิลด์ %r ด้วย id %r" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "URL ที่ให้มาไม่ได้อ้างอิงถึงวิดีโอที่รองรับ" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "URL ที่ระบุไม่ถูกต้อง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "URL ที่ระบุไม่ถูกต้อง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "ธีม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "ธีมสี" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "มีข้อขัดแย้งระหว่างเวอร์ชันของคุณกับเวอร์ชันในฐานข้อมูล" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "URL นี้ไม่ถูกต้อง ไม่สามารถอัปเดตการแสดงตัวอย่างได้" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "บล็อกนี้ล้าสมัยแล้ว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "เอกสารนี้ไม่ได้รับการบันทึก!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "ไฟล์นี้เป็นเอกสารแนบสำหรับมุมมองสาธารณะ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "ไฟล์นี้แนบมากับบันทึกปัจจุบัน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "ภาพนี้เป็นภาพภายนอก" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"รูปภาพประเภทนี้ไม่รองรับการตัด
หากคุณต้องการตัด " +"โปรดดาวน์โหลดจากแหล่งที่มาดั้งเดิมและอัปโหลดใน Odoo ก่อน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "ชื่อเรื่อง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "แท็กชื่อเรื่อง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "หากต้องการเปลี่ยนแปลง วางบล็อกนี้และใช้ตัวเลือกใหม่ในเวอร์ชันที่แล้ว" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"ในการบันทึกตัวอย่างข้อมูล " +"เราต้องบันทึกการแก้ไขก่อนหน้านี้ทั้งหมดของคุณและโหลดหน้านี้ซ้ำ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "To-do" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "สลับตัวหนา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "สลับรายการตรวจสอบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "สลับการหมุนไอคอน" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "สลับตัวเอียง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "สลับรายการที่เรียงลำดับ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "สลับขีดทับ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "สลับการขีดเส้นใต้" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "สลับรายการที่ไม่เรียงลำดับ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "ทูลทิป" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "แปลง" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "แปลงภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "แปลงรูปภาพ (คลิกสองครั้งเพื่อรีเซ็ตการแปลง)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "แปล" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "สีโปร่งแสง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "ลองค้นหาด้วยคำอื่นๆ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "ประเภท" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "พิมพ์ \"/\" สำหรับคำสั่ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL หรือ อีเมลล์" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "ไม่จัดตำแหน่ง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "ไม่คาดหวัง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "อัปโหลดเอกสาร" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "อัปโหลดภาพ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "ไม่รองรับรูปแบบของรูปภาพที่อัปโหลด ให้ลองกับ:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "ไม่รองรับรูปแบบของภาพที่อัปโหลด ลองกับ: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "วิดีโอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "การจัดรูปแบบวิดีโอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "โค้ดวิดีโอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "วิดีโอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "วิดีโอจะถูกปิดเสียงเมื่อเปิดใช้งานการเล่นอัตโนมัติ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "ดู" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "ชุดข้อมูลมุมมองและเนื้อหา" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"คำเตือน: หลังจากปิดกล่องโต้ตอบนี้ " +"เวอร์ชันที่คุณกำลังทำงานอยู่จะถูกละทิ้งและจะไม่สามารถใช้ได้อีกต่อไป" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "เป็นคลื่น" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "การทดสอบย่อยของตัวแปลงแก้ไขเว็บ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "การทดสอบตัวแปลงแก้ไขเว็บ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "วิดเจ็ต" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "ความกว้าง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "เขียนข้อความที่นี่..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "ใช่" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "คุณสามารถอัปโหลดเอกสารด้วยปุ่มที่อยู่ด้านบนซ้ายของหน้าจอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "คุณสามารถอัปโหลดรูปภาพด้วยปุ่มที่อยู่ด้านบนซ้ายของหน้าจอ" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "คุณต้องระบุข้อมูลหรือ URL เพื่อสร้างไฟล์แนบ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL ของคุณ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "ขยายเข้า" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "ขยายออก" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "เพิ่ม" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "และ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "ออโต้" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "มืดลง" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "ค่าเริ่มต้น" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "การยกเว้น" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "สว่างขึ้น" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "คูณ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "โอเวอร์เลย์" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "หน้าจอ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "วิดีโอ" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "การจัดการข้อความของ websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/tr.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/tr.po new file mode 100644 index 0000000..cc6f7f4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/tr.po @@ -0,0 +1,3470 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Nadir Gazioglu , 2022 +# Osman Karagöz , 2022 +# İmat Yahya Çataklı , 2022 +# İmat Yahya Çataklı , 2022 +# Thermo Dynamic , 2022 +# Gökhan Erdoğdu , 2022 +# Güven YILMAZ , 2022 +# Ramiz Deniz Öner , 2022 +# Özlem Atalay , 2022 +# Levent Karakaş , 2022 +# checkyoursix , 2022 +# Erdinç Akın, 2022 +# abc Def , 2022 +# Ali Zeynel AĞCA , 2022 +# Halil, 2022 +# Murat Durmuş , 2022 +# Ediz Duman , 2022 +# Umur Akın , 2022 +# Murat Kaplan , 2022 +# Tugay Hatıl , 2023 +# Ertuğrul Güreş , 2023 +# Martin Trigaux, 2023 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Orijinal)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Önerilen)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%s piksel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt etiketi' resim görüntülenemiyorsa, görüntü için alternatif bir metin " +"belirtir (yavaş bağlantı, eksik görüntü, ekran okuyucu ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "Resmi gezdirdiğinizde 'Başlık etiketi' araç ipucu olarak gösterilir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Etiketi)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(BAŞLIK Etiketi)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL ya da Gömülü)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 sütun" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "%25" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 Yıldız" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 Sütun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 sütun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 Yıldız" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "%50" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Bloklar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Özelleştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Bir sunucu hatası oluştu. Lütfen doğru şekilde oturum açtığınızdan ve " +"kaydettiğiniz dosyanın doğru biçimlendirildiğinden emin olun." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Üstünde" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Kabul Et" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Sütun Ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Satır Ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "URL Ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Blok alıntı bölümü ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Bir buton ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Bir kod bölümü ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Sol sütuna ekleme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Sağ sütun ekleme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Bağlantı Ekle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Üstüne satır ekleme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Aşağıya bir satır ekleyin" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Havadar ve Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "İkaz" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Merkeze Yasla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Sola Yasla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Sağa Hizala" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Hizalanma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tümü" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Tüm SCSS Dosyaları" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Tüm belgeler yüklendi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Tüm resimler yüklendi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt etiketi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Açı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animasyonlaştırılmış" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "İsimsiz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Uygula" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Snippet'i silmek istediğinizden emin misiniz:%s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Bu dosyayı silmek istediğinizden emin misiniz?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "En Boy Oranı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Varlık Kullanımları" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Ek" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "Eklenti URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Göreli bağlantıya otomatik dönüştür" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Otomatik oynat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Bir sütuna geri dönün." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Arkaplan" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Arkaplan Rengi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Arkaplan Pozisyonu" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Temel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Temel bloklar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Temeller" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Altında" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Büyük bölüm başlığı." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blob" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Engelle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Bloklar ve Yağmurlu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Bulanıklık" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Kalın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Kenar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Kenar Rengi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Sınır stili" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Kenarlık Genişliği" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Parlaklık" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Maddeli liste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Buton" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "İptal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Dikkat !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Merkez" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Medya tanımını ve araç bilgisini değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Kontrol Listesi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Bağlanacak kaydı seçin..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Kapat" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Kod" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Renk" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Renk filtresi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Renk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Sütun" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Ortak renkler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Onayla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Doğrulama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "İçerik çakışması" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Kontrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "2 sütuna dönüştürün." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "3 sütuna dönüştürün." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "4 sütuna dönüştürün." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Bağlantıyı kopyala" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "URL kodunuzu ya da gömülü kodunuzu buraya kopyalayıp-yapıştırın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Modül yüklenemedi%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Kapak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Oluştur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Numaralandırma içeren bir liste oluşturun." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Basit bir madde işaretli liste oluşturun." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Bir URL oluşturun." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Görüntüyü Kırp" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Özel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Özel%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Kesik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Öntanımlı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Varsayılan + Yuvarlanmış" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Özel degrade tanımlama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Sil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Sil %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Geçerli tabloyu sil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Açıklama" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Aygıtlar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Vazgeç" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Değişiklikten vazgeç" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Uygulama yüklemek istiyor musunuz %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Belgeler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Noktalı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Çift" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Düzenlemek için çift-tıkla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Yapı taşını sürükleyip bırakın." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Konteyneri Kopyala" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Dinamik Renkler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Dinamik Yertutucu Oluşturucu" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "HATA: Medya kitaplığından indirme URL'leri alınamadı." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "Erken Kuş" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Bağlantıyı Düzenle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Görseli düzenle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Medya açıklamasını düzenle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Yerleşik bir dosyanın bu düzenleyici aracılığıyla düzenlenmesi önerilmez, " +"çünkü gelecekteki Uygulama yükseltmeleri sırasında güncellenmesini " +"önleyecektir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Görüntü Göm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Youtube Videosunu Göm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Görüntüyü belgeye gömün." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Youtube videosunu belgeye gömün." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Beklenen " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "En yakın köşeye kadar uzanın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "En yakın tarafa uzanın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "En uzak köşeye kadar uzanın" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "En uzak tarafa kadar uzanın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Dosya yüklendi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Doldur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Dolgu + Yuvarlak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Dolgu Rengi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Filtre" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Birinci Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Düz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Esnek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Flip" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Yatay Çevirmek" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Dikey Çevirmek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Kayan şekiller" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Yüzen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Font Rengi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Yazı Boyutu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Teknik nedenlerden dolayı, bu blok buraya bırakılamaz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Biçim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Tam ekran" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Telif hakkı olmayan fotoğraf ve illüstrasyonlardan oluşan kütüphanemizde " +"arama yaparak mükemmel görüntüyü elde edin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Eğim" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Yönlendirme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Başlık 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Başlık 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Başlık 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Başlık 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Başlık 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Başlık 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Başlık 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Başlık 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Başlık 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Yükseklik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Dailymotion logosunu gizle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Tam ekran butonunu gizle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Oyuncu kontrollerini gizle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Paylaşım butonunu gizle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "İkon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Simge Biçimlendirme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Simge boyutu 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Simge boyutu 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Simge boyutu 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Simge boyutu 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Simge boyutu 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Simgeler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Mevcut düzenlemeleri atarsanız, kaydedilmemiş tüm değişiklikler " +"kaybolacaktır. Düzenleme moduna dönmek için iptal edebilirsiniz." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Eğer bu dosyayı sıfırlarsanız, tüm özelleştirmeleriniz varsayılan dosyaya " +"döndürüldüğü için kaybolur." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Çizim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Görsel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Görüntü Biçimlendirme" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Görsel Yüksekliği" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Görsel Kaynağı" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Görsel Genişliği" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Görüntü doldurma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Görseller" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Mürekkep" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Satır İçi Metin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "3 yıldızın üzerine bir derecelendirme ekle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "5 yıldızın üzerinde bir derecelendirme ekle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Tablo ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Bir video ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Üstüne ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Yatay kural ayırıcısı ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Bir resim ekle." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Aşağıya ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Sola ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Ortam ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Bağlantı ekleme veya düzenleme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Kişiselleştirilmiş içerik ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Sağa ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Tablo ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "İmzanızı ekleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Yükle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Yükle %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Yükleme devam ediyor" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "%s için geçersiz alan değeri: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Görünmez Elemanlar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Öğe" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS dosyası: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Geniş" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Sol" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Doğrusal" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Satırlar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Bağlantı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Bağlantı Etiketi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Bağlantı panoya kopyalandı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Bağlantı oluştur" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Liste" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Daha fazla yükle..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Döngü" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Ana renk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Pazarlama Araçları" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Medya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Orta" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Orta bölüm başlığı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Bu uygulama hakkında daha fazla bilgi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Aşağı in" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Sola taşı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Sağa taşı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Yukarı çık" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Resimlerim" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Adı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Navigasyon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Hayır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL belirtilmedi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Hiç belge bulunamadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Hiç resim bulunamadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Düşecek konum yok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Artık kayıt yok" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Piktogram bulunamadı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Hiçbiri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Normal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Numaralı liste" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo Editör Testleri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Yalnızca Özel SCSS Dosyaları" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Yalnızca Sayfa SCSS Dosyaları" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Sadece Görüntülemeler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Yeni bir sekmede aç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Yeni pencerede aç" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "SEO en iyileştirildi" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Orijinal (optimize edilmemiş, yeniden boyutlandırılmamış) ek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Kökeni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Taslak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Anahat + Yuvarlanmış" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Dolgu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Sayfa Seçenekleri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Paragraf bloğu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "URL olarak yapıştır" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Desenler" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Pozisyon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Önizle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Birincil" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "O kahrolası gözleme ne yapıyor, Çadır?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Toronto'ya gelmediğini" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Toronto'ya gelmesi gerekiyordu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Kalite" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Alıntı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb Alanı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb Alanıyla İlgili Kişi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Alan Tarihi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Alanı Tarih" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb Alan Süresi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Oweb Alan Sayısalı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Alan HTML'si" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Görsel Alanı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb Alan Tamsayı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Alanı Çoktan Bire" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb Alanı Parasal" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Alanı Göreli" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb Alan Seçimi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Alan Metni" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Alanı qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Radyal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Salt okunur alan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Medyayı tıkladığında kullanıcıyı başka bir yere yönlendirin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Kaldır (SİL)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Bloku Kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Akımı Kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Bağlantıyı Kaldır" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Seçili Rengi Kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Sütunları kaldırma" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Geçerli sütunu kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Geçerli satırı kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Biçimlendirmeyi Kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Bağlantıyı kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "%s yeniden adlandırma" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Tekrarlama deseni" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Yerleştirme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Medyayı değiştirme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Sıfırla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Resmi Sıfırla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Kırpmayı sıfırla" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Dönüşümü sıfırla" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Henüz desteklenmeyen görünümlerin sıfırlanması" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Varsayılanı Yeniden Boyutlandır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Tamamını Yeniden Boyutlandır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Yarısını Yeniden Boyutlandır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Çeyreğini Yeniden Boyulandır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Sağ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Sola dön" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Sağa dön" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Satır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS dosyası: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Doygunluk" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Kaydet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Kaydet ve Yükle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Kaydet ve Yeniden Yükle" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Kaydı kaydet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Belge ara" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Piktogram ara" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Görsel ara" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Bir blok arayın (ör. sayılar, resim duvarı, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Kayıt arama..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Daha fazlasını ara ..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Daha fazla kayıt göstermek için arama yapın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "İkincil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Stil uygulamak için sayfanızda bir blok seçin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Bir ortam seçin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Ayraç" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepya" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Sunucu hatası" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Gölge" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Şekil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Şekil: Daire" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Şekil: Yuvarlak" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Şekil: Küçük resim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Optimize edilmiş görüntüleri göster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "İmza" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Boyut" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Boyut 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Boyut 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Boyut 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Boyut 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Boyut 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Küçük" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Küçük bölüm başlığı." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Katı" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Katı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Yükseltilmiş haklara sahip biri bu alanı daha önce değiştirmiştir, bu " +"nedenle kendiniz değiştiremezsiniz." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Özel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Yapı" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Stil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Öneriler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Yön değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Metnin yönünü değiştirin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Masa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Tablo Seçenekleri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Tablo araçları" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Tema ID:%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Metin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Metin Rengi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Metin hizalama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Yazı stili" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL çalışmıyor gibi görünüyor." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL geçerli görünüyor." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Tarih zamanı %s, %s biçimiyle eşleşmiyor" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "Sağlanan url desteklenen hiç bir videoyu referans göstermiyor" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Sağlanan URL geçersiz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Sağlanan url geçersiz" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Veritabanındaki sürüm kullanılacaktır.\n" +" Değişikliklerinizi korumanız gerekiyorsa aşağıdaki içeriği kopyalayın ve yeni belgeyi düzenleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Tema" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Tema renkleri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Sizin sürümünüz ile veritabanındaki sürüm arasında bir çakışma var." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Bu URL geçersiz. Önizleme güncellenemedi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Bu blok güncel değil" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Bu belge kaydedilmedi !" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Bu dosya herkese açık bir görünüm ekidir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Bu dosya geçerli kayda eklenir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Bu resim harici bir resim" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Bu görüntü türü kırpma için desteklenmez.
Kırpmak istiyorsanız, lütfen " +"önce orijinal kaynaktan indirin ve Odoo'ya yükleyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Başlık" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Başlık etiketi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Değişiklik yapmak için bu bloğu bırakın ve son sürümdeki yeni seçenekleri " +"kullanın." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Bir snippet'i kaydetmek için önceki tüm değişikliklerinizi kaydetmemiz ve " +"sayfayı yeniden yüklememiz gerekir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Tost makinesi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Kalın değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Kontrol listesini değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Simge döndürmeyi değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "İtalik değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Sıralı listeyi değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Üstü çizili geçişi değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Alt çizgiyi değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Sıralanmamış listeyi değiştir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Bilgi Çubuğu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Bir denetim listesiyle görevleri izleyin." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Dönüştürmek" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Resmi dönüştürme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Resmi dönüştür ( dönüşümü sıfırlamak için iki kere tıklayınız)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Çevir" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Şeffaf renkler" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Diğer anahtar kelimelerle arama yapmayı deneyin." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Tür" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Komutlar için \"/\" yazın" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL yada E-posta" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Hizalamayı kaldır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Beklenmeyen " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Bir belge yükleyin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Bir resim yükleyin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Yüklenen resmin formatı desteklenmez. Şunlarla deneyin:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Yüklenen resmin formatı desteklenmez. Şunu deneyin: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Video Biçimlendirme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video kodu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Videolar" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Otomatik oynatma etkinleştirildiğinde videoların sesi kapatılır" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Görüntüle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Görünümler ve Varlıklar paketleri" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Uyarı: Bu iletişim kutusunu kapattıktan sonra, üzerinde çalıştığınız sürüm " +"atılacak ve artık kullanılamayacaktır." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Dalgalı" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editör Dönüştürücü Alt Testi" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editör Dönüştürücü Testi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Bileşenler" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Genişlik" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Bir şey yaz.." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Evet" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Belgeleri ekranın sol üst köşesinde bulunan düğmeyle yükleyebilirsiniz." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Ekranın sol üst köşesinde bulunan düğmeyi kullanarak görüntü " +"yükleyebilirsiniz." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "Ek oluşturmak için veri veya url belirtmeniz gerekir." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Yakınlaştır" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Uzaklaştır" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "ekle" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "ve" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "oto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "darken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "varsayılan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "çıkarılanlar" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "yanarsa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "çoğalt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "kaplama" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "ekran açıklaması" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videolar" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "websocket mesaj işleme" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "örnek" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/uk.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/uk.po new file mode 100644 index 0000000..d37217a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/uk.po @@ -0,0 +1,3460 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2023 +# Wil Odoo, 2025 +# Alina Lisnenko , 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Alina Lisnenko , 2025\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Оригінал)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Запропонований)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"\"Alt tag\" вказує альтернативний текст для зображення, якщо зображення не " +"може бути відображене (повільне з'єднання, відсутнє зображення, перегляд " +"екрану ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Тег заголовку' відображається як підказка під час наведення на зображення." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL або Вставити)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 колонки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 зірки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 колонки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 колонки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 зірок" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "deg" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Блоки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Кастомізувати" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Сталася помилка сервера. Переконайтеся, що ви правильно увійшли, а файл, " +"який ви зберігаєте, правильно відформатований." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Вище" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Приймає" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Додати" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Додати колонку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Додати рядок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Додати URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Додайте блок цитати." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Додайте кнопку." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Додайте блок коду." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "Додати колонку зліва" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "Додати колонку справа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Додайте посилання." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "Додати рядок вище" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "Додати рядок нижче" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Сповіщення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Вирівняти по центру" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Вирівняти ліворуч" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Вирівняти праворуч" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Вирівнювання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Всі" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Усі файли SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Усі документи завантажено" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Усі зображення завантажено" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt tag" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Кут" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Анімовано" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Анонім" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Застосувати" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "Ви впевнені, що хочете видалити цей сніпет: %s ?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Ви впевнені, що хочете видалити цей файл?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Співвідношення сторін" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Активи утиліт" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Прикріплення" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL прикріплення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Автоматична конвертація на пов'язане посилання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Автопрогравання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "Повернути до однієї колонки." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Фон" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Фоновий колір" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Розташування фонового зображення" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "База" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Базові блоки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Основне" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Нижче" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "Великий заголовок розділу." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Краплі" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Блокувати" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Блоки і дощовий" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Замилювання" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "Жирний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Контур" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Колір межі" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Стиль межі" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Ширина межі" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Браннан" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Яскравість" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Список з пунктами" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Кнопка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Скасувати" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Обережно!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Центр" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Змініть опис відомостей про медіа та підказки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Оберіть запис..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Закрити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Код" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Колір" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Фільтр кольору" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Кольори" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Колонка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Загальні кольори" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Підтвердити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Підтвердження" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Конфлікт вмісту" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Контраст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "Конвертувати в 2 колонки." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "Конвертувати в 3 колонки." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "Конвертувати в 4 колонки." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Скопіюйте посилання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Скопіюйте та вставте вашу URL-адресу або вставте ваш код тут" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Неможливо встановити модуль %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Неможливо завантажити файл \"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Обкладинка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Створити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "Створіть пронумерований список." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "Створіть простий список з пунктами." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Створити URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Створено" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Обрізати зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Власний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Кастомний %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Підкреслено пунктиром" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "За замовчуванням" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Типовий + округлений" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Визначіть кастомний градієнт" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Видалити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Видалити %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "Видалити поточну таблицю" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Опис" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Пристрої" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Відмінити" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Вилучити записи" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Ви хочете встановити модуль %s?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Документи" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Позначено пунктиром" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Подвійний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Подвійне натискання, щоби редагувати" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Перетягніть конструкторський блок." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Дублювати контейнер" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Динамічні кольори" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Динамічний заповнювач" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" +"Помилка: неможливо отримати url-адреси для завантаження з бібліотеки " +"зображень." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Редагувати посилання" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Редагувати зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Редагувати опис медіа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Редагувати вбудований файл за допомогою цього редактора не рекомендується, " +"оскільки це може запобігти його оновленню під час майбутніх оновлень " +"програми." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Вставте зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Вставте Youtube відео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Вставте зображення в документ." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Вставте youtube відео в документ." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Пустата цитата" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Очікуються" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Протягніть до найближчого кута" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Протягніть до найближчої сторони" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Протягніть до найдальшого кута" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Протягніть до найдальшої сторони" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Файл завантажено" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Заповнити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Заповнено + Округлено" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Колір заповнення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Фільтр" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "Перша панель" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Фіксований" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Гнучкий" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Перевернути" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Перевернути горизонтально" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Перевернути вертикально" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Плаваючі фігури" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "Плаває" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Колір шрифту" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Розмір шрифту" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "З технічних причин цей блок не можна опустити сюди" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Формат" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "На повний екран" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Отримайте ідеальне зображення через пошук у нашій бібліотеці безкоштовних " +"фото та ілюстрацій." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Градієнт" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизація HTTP" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Заголовок 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Заголовок 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Заголовок 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Заголовок 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Заголовок 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Заголовок 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Заголовок 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Заголовок 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Заголовок 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Заголовок 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Заголовок 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Заголовок 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Висота" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Сховати логотип Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Приховати повноекранну кнопку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Сховати елементи керування плеєром" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Приховати кнопку поширення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Значок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Форматування іконки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Розмір іконки 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Розмір іконки 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Розмір іконки 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Розмір іконки 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Розмір іконки 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Іконки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Якщо відкинути поточні зміни, усі незбережені зміни буде втрачено. Ви можете" +" скасувати, щоби повернутися до режиму редагування." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Якщо ви скинете цей файл, усі ваші налаштування будуть втрачені, оскільки " +"вони будуть повернуті до файлу за замовчуванням." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Ілюстрації" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Форматування зображення" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Висота зображення" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Шлях до зображення" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Ширина зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Заповнення зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Зображення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Чорнильниця" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Вбудований текст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "Вставте оцінку понад 3 зірки." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "Вставте оцінку понад 5 зірок." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "Вставте таблицю." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "Вставте відео." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Вставте вище" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "Вставте горизонтальний роздільник." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "Вставте зображення." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Вставте нижче" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Вставте ліворуч" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Вставте медіа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Вставте або відредагуйте посилання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Вставте персоналізований вміст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Вставити справа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Вставити таблицю" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "Вставте ваш підпис." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Встановити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Встановити %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Виконується встановлення" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Недійсне значення поля для %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Невидимі елементи" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Елемент" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "Файл JS: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Великий" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Лівий" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Лінійно" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Рядки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Посилання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Текст посилання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Посилання скопійовано в буфер обміну." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Посилання на" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Завантажити більше..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Цикл" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Основний колір" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Маркетингові інструменти" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Медіа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Середній" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "Середній заголовок розділу." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Більше інформації про цей модуль." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Перемістити вниз" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Перемістити ліворуч" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Перемістити праворуч" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Перемістити вгору" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Мої зображення" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Назва" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Навігація" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Ні" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "URL-адреса не вказана" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Документів не знайдено." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Зображень не знайдено." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Немає місця, куди можна вставити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Більше немає записів" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Не знайдено жодної піктограми." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Немає" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Звичайний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Пронумерований список" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Тести редактора Odoo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Лише користувацькі файли SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Лише файли сторінки SCSS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Лише перегляди" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Відкрити у новій вкладці" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Відкрити в новому вікні" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Оптимізовано" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Оригінальне (не оптимізоване, незмінене у розмірі) прикріплення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Походження" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Контур" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Контур + закруглення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Поля елементу" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Опції сторінки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Блок абзацу." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Вставте як URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Візернуки" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Вакансія" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Попередній перегляд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Основний" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Якість" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Цитата" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Поле Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Контакт поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Дата поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Дата час поля Qweb " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Тривалість поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Число з комою поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "HTML поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Зображення поля Qweb " + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Ціле поле Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Поле Qweb Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Грошове поле Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Поле-посилання Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Вибір поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Текст поля Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb поле qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Радіальний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Поле тільки для читання" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Переспрямування користувача в інше місце, коли він натискає медіа." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Вилучити (ВИДАЛИТИ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Вилучити блок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Вилучити поточний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Вилучити посилання" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Вилучити вибраний колір" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Вилучити колонки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "Вилучити поточну колонку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "Вилучити поточний рядок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Вилучити формат" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Вилучити посилання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Перейменувати %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Повторіть візерунок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Замінити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Змінити медіа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Скинути" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Скинути зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Скинути розмір" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Скинути обрізання" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Скинути зміни" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Скидання переглядів ще не підтримується" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Змінити розмір за замовчуванням" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Змінити розмір на повний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Змінити розмір на половину" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Змінити розмір на чверть" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Правий" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Повернути ліворуч" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Повернути праворуч" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Рядок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "Файл SCSS: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Насичення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Зберегти" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Зберегти та встановити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Зберегти та перезавантажити" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Зберегти запис" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Пошук документу" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Пошук піктограми" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Пошук зображення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Пошук блоку (напр. номери, стіна зображення, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Пошук записів..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Шукати більше..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Шукати, щоби показати більше записів" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Другорядний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Оберіть блок на вашій сторінці, щоби стилізувати її." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Оберіть медіа" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Роздільник" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Сепія" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Помилка сервера" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Тінь" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Форма" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Форма: коло" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Форма: заокруглена" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Форма: ескіз" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Показати оптимізовані зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Підпис" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Розмір" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Розмір 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Розмір 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Розмір 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Розмір 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Розмір 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Малий" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "Заголовок невеликого розділу." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Суцільний" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Заливки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Хтось із підвищеними правами раніше змінив цю область, тому ви не можете " +"змінити її самостійно." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Спеціальні" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Структура" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Стиль" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Пропозиції" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Змінити напрямок" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "Змінити напрямок тексту." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Таблиця" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Параметри таблиці" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "Інструменти таблиці" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "ID шаблону: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Текст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Колір тексту" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Вирівнювання тексту" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Стиль тексту" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "Здається, URL не працює." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "Здається URL дійсна." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Датачас %s не співпадає формат %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Документ уже збережено від когось із іншою історією моделі, поле з " +"ідентифікатором." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" +"Вказана URL-адреса не містить посилання на будь-яке підтримуване відео" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Наданий url недійсний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "Надана URL-адреса недійсна" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"Буде використана версія з бази даних.\n" +" Якщо вам потрібно зберегти зміни, скопіюйте наведений нижче вміст і відредагуйте новий документ." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Тема" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Кольори теми" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Існує конфлікт між вашою версією та версією в базі даних." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "Ця URL-адреса недійсна. Не вдалося оновити попередній перегляд." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Цей блок застарів" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Цей документ не збережено!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "Цей файл є публічним переглядом прикріплення." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "Цей файл додано до поточного запису." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "Це зображення є зовнішнім зображенням" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"Цей тип зображення не підтримується для обрізання.
Якщо ви хочете " +"обрізати його, спершу завантажте з оригінального джерела та завантажте його " +"в Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Заголовок" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Тег заголовку" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"Щоб внести зміни, скиньте цей блок і скористайтеся новими параметрами в " +"останній версії." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Щоб зберегти сніпет, нам потрібно зберегти всі ваші попередні зміни та " +"перезавантажити сторінку." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Зробити" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Тостер" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Увімкнути жирний" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Увімкнути чекліст" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Увімкнути обертання іконки" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Увімкнути курсив" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Перемкнути впорядкований список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Переключити закреслення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Увімкнути підкреслення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Перемкнути невпорядкований список" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Підказка" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "Відстежуйте завдання за допомогою чеклисту." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Трансформувати" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Трансформувати зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Перетворіть зображення (клацніть два рази, щоб скинути перетворення)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Перекласти" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Прозорі кольори" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Спробуйте пошук з іншими ключовими словами." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Тип" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Введіть \"/\" для команд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL або Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Забрати вирівнювання" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Несподівано" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Завантажити документ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Завантажте зображення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Формат завантаженого зображення не підтримується. Спробуйте з:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Формат завантаженого зображення не підтримується. Спробуйте з: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Валенсія" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Відео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Відеоформатування" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Код відео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Відео" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Відео із вимкненим звуком, коли вмикається автоматичне відтворення" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Перегляд" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Групи переглядів та активів" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Уолден" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Попередження: після закриття цього діалогового вікна версія, над якою ви " +"працювали, буде відхилена і більше не буде доступна." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Хвилястий" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Підтест конвертера веб-редактора" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Тест конвертера веб-редактора" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Віджети" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Ширина" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Напишіть щось..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Так" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"Ви можете завантажити документи з кнопкою, яка розташована зліва у верхньому" +" екрані." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"Ви можете завантажити зображення з кнопкою, розташованою у верхньому лівому " +"екрані." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" +"Вам необхідно вказати будь-які дані або url, щоб створити прикріплення." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "Ваша URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Збільшити" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Зменшити" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "додати" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "і" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "автоматично" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "темніти" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "за замовчуванням" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "виключення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "світліший" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "множення" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "накладення" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "екран" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "відео" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "обробка повідомлень websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/vi.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/vi.po new file mode 100644 index 0000000..42b3cde --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/vi.po @@ -0,0 +1,3454 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Trần Hà , 2022 +# Thin Tran , 2022 +# Duy BQ , 2022 +# Martin Trigaux, 2023 +# Wil Odoo, 2025 +# Thi Huong Nguyen, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Thi Huong Nguyen, 2025\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (Original)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (Suggested)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" +"'Thẻ tiêu đề' được hiển thị dưới dạng chú thích công cụ khi bạn di chuột qua" +" ảnh." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE Tag)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(URL hoặc được nhúng)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 cột" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 sao" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 cột" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 cột" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 sao" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "độ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "Khối" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "Tuỳ chỉnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" +"Đã xảy ra lỗi máy chủ. Vui lòng kiểm tra xem bạn đã đăng nhập chính xác hay " +"chưa và file bạn đang lưu được định dạng đúng." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "Trên" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "Chấp nhận" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "Thêm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "Thêm cột" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "Thêm hàng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "Thêm URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "Thêm một blockquote section." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "Thêm một nút." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "Thêm một code section." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "Thêm một liên kết." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "Airy & Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "Cảnh báo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "Căn giữa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "Căn trái" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "Căn phải" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "Căn chỉnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "Tất cả" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "Tất cả SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "Tất cả tài liệu đã được tải" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "Tất cả hình ảnh đã được tải" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Thẻ Alt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "Góc độ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "Animated" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "Nặc danh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "Áp dụng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "Bạn có chắc chắn muốn xóa tệp này không?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "Tỷ lệ khung hình" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "Assets Utils" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "Đính kèm" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "URL Đính kèm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "Tự động chuyển đổi sang liên kết tương ứng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "Chơi tự động" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "Nền" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "Màu nền" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "Vị trí nền" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "Cơ bản" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "Các khối cơ bản" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "Cơ sở" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "Dưới" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Hình tự do" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "Khoá" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "Khối & mưa" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "Làm mờ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "In Đậm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "Viền" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "Border Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "Kiểu viền" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "Border Width" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "Độ sáng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "Danh sách có dấu đầu dòng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "Nút" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "Hủy" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "Cẩn thận !" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "Trung tâm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "Thay đổi mô tả và chú thích của media" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "Checklist" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "Chọn một bản ghi..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "Đóng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "Mã" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "Màu sắc" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "Bộ lọc màu" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "Màu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "Cột" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "Các màu Phổ thông" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "Xác nhận" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "Xác nhận" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "Xung đột nội dung" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "Contrast" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "Copy Link" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "Sao chép-dán URL của bạn hoặc mã nhúng tại đây" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "Không thể cài đặt module %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "Không thể tải tệp\"%s\"." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "Ảnh bìa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "Tạo" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "Tạo một URL." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "Cắt ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "Tùy chỉnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Chỉnh %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Hàng ngày" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "Vượt qua" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "Mặc định" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "Mặc định + Làm tròn" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "Xác định một gradient tùy chỉnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "Xoá" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "Xóa %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "Mô tả" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "Thiết bị" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "Huỷ bỏ" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "Hủy bản ghi" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "Bạn có muốn cài đặt Ứng dụng %s không?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "Tài liệu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "Say mê" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "Gấp đôi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "Bấm đúp để sửa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "Kéo và thả khối dựng." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "Sao chép container" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "Màu động" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "Trình giữ chỗ động" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "LỖI: không thể lấy url tải xuống từ thư viện phương tiện." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "Chỉnh sửa liên kết" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "Sửa ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "Chỉnh sửa mô tả phương tiện" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "Hình ảnh được nhúng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "Video Youtube được nhúng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "Đã nhúng hình ảnh vào tài liệu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "Đã nhúng video Youtube vào tài liệu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "Trích dẫn trống" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "Dự kiến " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "Mở rộng đến góc gần nhất" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "Mở rộng đến phía gần nhất" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "Mở rộng đến góc xa nhất" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "Mở rộng đến phía xa nhất" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "Tệp đã được tải lên" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "Điền vào" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "Fill + Rounded" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "Fill Color" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "Bộ lọc" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "First Panel" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "Mặt bằng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "Linh hoạt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "Lật" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "Flip Horizontal" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "Flip Vertical" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "Hình nổi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "Màu Font" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "Cỡ chữ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "Vì lý do kỹ thuật, không thể thả khối này ở đây" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "Định dạng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "Toàn màn hình" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" +"Chọn lấy một hình ảnh hoàn hảo bằng cách tìm kiếm trong thư viện ảnh và hình" +" minh họa miễn phí bản quyền của chúng tôi." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "Gradient" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "Header 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "Header 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "Header 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "Header 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "Header 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "Header 6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "Heading 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "Heading 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "Heading 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "Tiêu đề 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "Tiêu đề 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "Tiêu đề 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "Chiều cao" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "Ẩn biểu tượng Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "Ẩn nút Đầy màn hình" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "Ẩn nút điều khiển" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "Ẩn nút chia sẽ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "Biểu tượng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "Định dạng biểu tượng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "Kích thước biểu tượng 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "Kích thước biểu tượng 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "Kích thước biểu tượng 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "Kích thước biểu tượng 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "Kích thước biểu tượng 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "Icon" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" +"Nếu bạn hủy các chỉnh sửa hiện tại, tất cả các thay đổi chưa được lưu sẽ bị " +"mất. Bạn có thể hủy để quay lại chế độ chỉnh sửa." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" +"Nếu bạn cài lại file này, tất cả các tùy chỉnh của bạn sẽ bị mất vì nó sẽ bị" +" đảo lại như file mặc định." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "Hình minh hoạ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "Hình ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "Định dạng hình ảnh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "Chiều cao ảnh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "Nguồn ảnh" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "Chiều rộng ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "Padding hình ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "Hình ảnh" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Lọ mực" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "Văn bản nội tuyến" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "Chèn bên trên" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "Chèn bên dưới" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "Chèn bên trái" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "Chèn đa phương tiện" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "Chèn hoặc chỉnh sửa liên kết" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "Chèn nội dung riêng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "Chèn bên phải" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "Chèn bảng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "Cài đặt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "Cài đặt %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "Đang cài đặt" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "Invalid field value for %s: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "Yếu tố vô hình" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "Mục" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS file: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "Rộng" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "Trái" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "Đường thẳng" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "Dòng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "Liên kết" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "Nhãn Liên kết" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "Liên kết được sao chép vào khay nhớ tạm." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "Liên kết đến" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "Danh sách" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "Tải thêm..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "Loop" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "Màu chính" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "Công cụ marketing" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "Phương tiện" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "Kênh trung gian" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "Thông tin thêm về ứng dụng này." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "Chuyển xuống" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "Move left" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "Move right" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "Chuyển lên" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "Hình ảnh của tôi" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "Tên" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "Điều hướng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "Không" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "Không có URL nào được chỉ định" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "Không tìm thấy tài liệu nào." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "Không tìm thấy hình ảnh." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "Không có điểm để thả vào" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "Không có thêm bản ghi nào" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "Không tìm thấy chữ tượng hình." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "Không " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "Thông thường" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "Danh sách được đánh số" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Kiểm thử Odoo Trình chỉnh sửa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "Only Custom SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "Only Page SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "Only Views" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "Mở trong tab mới" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "Mở trong cửa sổ mới" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "Tối ưu hóa" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "Tệp đính kèm gốc (chưa tối ưu hóa, chưa định kích thước)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "Gốc" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "Dòng lục" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "Outline + Rounded" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "Padding" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "Tuỳ chọn trang" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "Khối đoạn văn bản" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "Dán dưới dạng URL" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "Hoa văn" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "Vị trí" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "Xem trước" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "Chủ đạo" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "Chất lượng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "Trích dẫn" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb Field" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Liên hệ lĩnh vực Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb Field Date" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb Field Datetime" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb Field Duration" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb Field Float" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb Field HTML" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Trường ảnh Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb Field Integer" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb Field Many to One" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb trường Monetary" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb Field Relative" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb Field Selection" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb Field Text" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb Field qweb" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "Xuyên tâm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "Trường chỉ đọc" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "Chuyển hướng người dùng đến nơi khác sau khi nhấp vào đa phương tiện." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "Gỡ (XOÁ)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "Gỡ Khối" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "Gỡ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "Xoá liên kết" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "Gỡ màu đã chọn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "Gỡ cột" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "Gỡ định dạng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "Xoá liên kết" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "Đặt lại tên %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "Lặp lại mẫu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "Thay thế" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "Media thay thế" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "Đặt lại" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "Đặt lại ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "Đặt lại kích thước" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "Đặt lại tuỳ chọn cắt" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "Đặt lại tuỳ chọn chuyển đổi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "Cài lại các chế độ xem chưa được hỗ trợ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "Thay đổi kích thước mặc định" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "Đổi kích thước đủ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "Đổi kích thước 1/2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "Đổi kích thước 1/4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "Phải" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "Xoay trái" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "Xoay phải" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "Hàng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS file: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "Bão hòa" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "Lưu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "Lưu và cài đặt" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "Lưu và tải lại" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "Lưu bản ghi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "Tìm kiếm tài liệu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "Tìm kiếm từ tượng hình" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "Tìm kiếm hình ảnh" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "Tìm kiếm một khối (VD: số, tường hình ảnh, ...)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "Tìm kiếm bản ghi..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "Search more..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "Tìm kiếm để hiển thị thêm bản ghi" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "Secondary" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "Chọn một khối trên trang của bạn để bắt đầu tạo kiểu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "Chọn đa phương tiện" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "Phần ngăn cách" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "Sepia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "Lỗi máy chủ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "Đổ bóng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "Hình dáng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "Hình: Tròn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "Hình: Bo tròn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "Hình: Thu nhỏ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "Show optimized images" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "Chữ ký" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "Kích thước" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "Kích thước 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "Kích thước 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "Kích thước 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "Kích thước 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "Kích thước 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "Nhỏ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "Rắn" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "Solids" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" +"Trước đó, một người nào đó có quyền cao hơn đã sửa đổi vùng này, do đó bạn " +"không thể tự sửa đổi nó." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "Specials" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "Cấu trúc lương" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "Phong cách" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "Gợi ý" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "Chuyển hướng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "Bảng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "Tuỳ chọn bảng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "Template ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "Văn bản" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "Màu chữ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "Căn chỉnh văn bản" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "Kiểu văn bản" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "URL dường như không hoạt động." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "URL có vẻ hợp lệ." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "Ngày giờ %s không khớp với định dạng %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" +"Tài liệu này đã được lưu từ một người nào đó có lịch sử khác cho model %r, " +"trường %r với id %r." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "The provided url does not reference any supported video" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "Url đã cho không hợp lệ" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "The provided url is not valid" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "Giao diện" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "Mà sắc Theme" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "Có xung đột giữa phiên bản của bạn và phiên bản trong cơ sở dữ liệu." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "URL này không hợp lệ. Không thể cập nhật bản xem trước." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "Khối này đã lỗi thời" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "Tài liệu này chưa được lưu!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "This file is a public view attachment." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "This file is attached to the current record." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "This image is an external image" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "Tiêu đề" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "Thẻ tiêu đề" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" +"To make changes, drop this block and use the new options in the last " +"version." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" +"Để lưu đoạn snippet, chúng tôi cần lưu tất cả các sửa đổi trước đó của bạn " +"và tải lại trang này." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "Việc cần làm" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "Chuyển đổi in đậm" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "Bật/tắt danh sách" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "Toggle icon spin" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "Toggle italic" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "Bật/tắt danh sách có thứ tự" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "Toggle strikethrough" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "Toggle underline" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "Bật/tắt danh sách không có thứ tự" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "Chú thích" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "Chuyển đổi" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "Chuyển đổi ảnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "Chuyển đổi hình ảnh (nhấp hai lần để thiết lập lại chuyển đổi)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "Dịch" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "Transparent colors" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "Thử tìm kiếm bằng từ khóa khác." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "Loại" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "Nhập \"/\" cho các lệnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "URL or Email" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "Hủy căn chỉnh" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "Unexpected " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "Tải lên 1 tài liệu" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "Tải lên một hình" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "Định dạng của hình ảnh đã tải lên không được hỗ trợ. Hãy thử với:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "Định dạng của hình ảnh đã tải lên không được hỗ trợ. Hãy thử với: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "Valencia" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "Định dạng video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "Video code" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "Video" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "Videos are muted when autoplay is enabled" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "Xem" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "Views and Assets bundles" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" +"Cảnh báo: sau khi đóng hộp thoại này, phiên bản bạn đang làm sẽ bị loại bỏ " +"và không còn tồn tại." + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "Gợn sóng" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web Editor Converter Subtest" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web Editor Converter Test" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "Tiện ích" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "Chiều rộng" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "Viết gì đó..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "Có" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" +"You can upload documents with the button located in the top left of the " +"screen." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" +"You can upload images with the button located in the top left of the screen." + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "You need to specify either data or url to create an attachment." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "URL của bạn" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "Zoom In" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "Zoom Out" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "add" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "và" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "tự động" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "darken" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "mặc định" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "exclusion" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "lighten" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "multiply" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "overlay" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "screen" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "videos" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "xử lý thông báo websocket" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/web_editor.pot b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/web_editor.pot new file mode 100644 index 0000000..b5a3448 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/web_editor.pot @@ -0,0 +1,3416 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2025-05-08 20:35+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_CN.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_CN.po new file mode 100644 index 0000000..bc452ec --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_CN.po @@ -0,0 +1,3428 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Raymond Yu , 2022 +# digitalliuzg8888, 2022 +# Emily Jia , 2023 +# Martin Trigaux, 2023 +# Chloe Wang, 2023 +# Jeffery CHEN , 2023 +# Wil Odoo, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Wil Odoo, 2025\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx (原始)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx (建议)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "如果无法显示图像,则'Alt tag' 指定图像的替代文本(连接速度慢,图像丢失,屏幕阅读器......)。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'标题标签' 当您移动鼠标到图片上面悬停的时候显示标记说明." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT 标签)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE 标签)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(网址或嵌入)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 栏" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 星" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 星" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "构造块" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "定制" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "出现服务器错误。请正确登录,并正确保存您保存的文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "以上" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr "接受" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "添加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "添加栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "添加行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "添加URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "添加块引用章节." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "添加按钮." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "添加代码部分." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "在左边添加一栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "在右侧添加一栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "添加一个链接." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "在上面添加一行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "在下面添加一行" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "空中飞人和Zigs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "警报" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "居中对齐" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "左对齐" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "右对齐" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "对齐" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "全部" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "所有SCSS文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "所有文档已加载" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "所有图像已加载" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt 标签" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "角度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "动画" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "匿名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "应用" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "您确定您要删除这个片段:%s 吗?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "您确定您要删除这个文件吗?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "宽高比" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "资产单位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "附件" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "附件网址" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "自动转换为相关链接" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "自动播放" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "回到一栏" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "背景" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "背景颜色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "背景位置" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "基础" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "基本构造块" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "基础" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "下面" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "大型章节标题。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "Blobs" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "构造块" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "块状和雨状" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "模糊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "加粗" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "边框" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "边框颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "边框样式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "边框宽度" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "布兰南" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "亮度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "编号列表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "按钮" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "小心!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "居中" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "更改媒体说明和工具提示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "清单" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "选择一个记录..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "关闭" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "代码" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "颜色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "颜色筛选" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "通用颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "确认" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "确认" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "内容冲突" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "对比度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "转换为2栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "转换为3栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "转换为4栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "复制链接" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "复制粘贴您的网址或在这里嵌入代码" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "无法安装模块 %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "无法加载文件“%s”。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "封面" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "创建" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "创建一个带编号的列表." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "创建一个简单的编号列表." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "创建一个网址." + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "创建人" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "裁剪图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "自定义" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "自定义%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "虚线" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "默认" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "默认+四舍五入" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "定义一个自定义的梯度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "删除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "删除 %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "删除当前表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "说明" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "设备" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "丢弃" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "丢弃记录" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "确定要安装 %s 应用?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "文档" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "点线" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "双" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "双击以编辑" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "拖拽构造块。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "复制容器" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "动态色彩" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "动态定位符" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "错误:无法从媒体库中获得下载链接。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "早起的鸟儿" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "编辑链接" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "编辑图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "编辑媒体描述" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "不建议通过这个编辑器编辑内置文件,因为这将阻止它在未来的App升级中被更新。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "嵌入图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "嵌入油管视频" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "在文档中嵌入图像." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "在文档中嵌入油管视频." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "空引用" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "预期 " + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "延伸到最近的角落" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "延伸到最近的一侧" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "延伸到最远的角落" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "延伸到最远的一侧" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "文件已被上传" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "填充" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "填充+圆角" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "填充颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "筛选" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "第一面板" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "扁平" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "弹性" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "翻转" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "水平翻转" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "垂直翻转" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "浮动的形状" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "浮动" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "字体颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "字体大小" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "由于技术原因,构造块不能放在这里" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "格式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "全屏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "通过在我们的无版权限制的图像和插图库中搜索,获得完美的图像。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "渐变" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "标题1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "标题2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "标题3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "标题4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "标题5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "标题6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "标题 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "标题 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "标题 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "标题4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "标题5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "标题6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "高度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "隐藏Dailymotion标志" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "隐藏全屏按钮" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "隐藏播放器控件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "隐藏分享按钮" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "HTML" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "图标" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "图标格式化" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "图标大小1倍" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "图标大小2倍" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "图标大小3倍" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "图标大小4倍" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "图标大小5倍" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "图标" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "如果您放弃当前的编辑,所有未保存的更改都将丢失。您可以取消以返回编辑模式。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "如果您重置此文件,您的所有自定义将丢失,因为它将被还原为默认文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "插画" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "图像格式化" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "图像高度" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "图像来源" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "图像宽度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "图像内边距" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "图像" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "墨水" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "内联文本" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "插入3星以上的评级。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "插入3星以上的评级。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "插入表格。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "插入视频." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "插入上方" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "插入水平线尺规分隔。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "插入图像." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "插入下方" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "插入左边" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "插入媒体" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "插入或编辑链接" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "插入个性化内容" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "插入右边" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "插入表格" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "插入你的签名。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "安装" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "安装 %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "安装中" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "%s 的无效字段值: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "无形的元素" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "项目" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS 文件:%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "大" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "最后更新人" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "最后更新时间" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "左" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "线性" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "明细行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "链接" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "连接标签" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "链接被复制到剪贴板。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "连接到" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "列表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "加载更多..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "循环" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "主要颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "市场工具" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "马文" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "媒体" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "媒介" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "中等章节标题。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "关于此应用的更多信息。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "移到下方" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "左移" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "右移" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "移到上方" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "我的图像" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "名称" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "导航" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "否" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "没有指定URL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "找不到文档。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "找不到图像。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "没有地点可以钻取" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "没有更多的记录" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "未找到统计图表。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "无" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "正常" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "编号列表" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo 编辑器测试" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "仅自定义SCSS文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "仅页面SCSS文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "仅视图" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "打开一个新标签" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "在新窗口中打开" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "优化" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "原始(未优化,未调整大小)附件" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "原点" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "轮廓" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "大纲+圆角" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "内边距" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "页面选项" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "段落构造块。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "粘贴为网址" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "模式" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "位置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "预览" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "首要的" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "他还没有到达多伦多吗" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "他预计将抵达多伦多" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "质量" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "引用" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb字段联系人" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb日期字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb 日期时间字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb 时长字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb 浮点型字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "Qweb HTML字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb 图像字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb整数字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb多对一字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb货币字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb相关字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb选项字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb文本字段" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb qweb字段" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "径向" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "只读字段" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "当用户点击媒体时,将其转到其他地方。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "移除(DELETE)。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "移除构造块" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "移除当前" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "移除链接" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "删除选定的颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "移除栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "移除当前栏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "删除当前行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "删除格式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "删除链接" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "重命名%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "重复的模式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "替换" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "替换媒体" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "重置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "重置图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "重设大小" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "重置裁切" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "重置转换" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "不支持重置视图" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "重置大小至默认" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "调整大小为全屏" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "调整大小为一半" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "调整大小为四分之一" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "右" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "向左旋转" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "向右旋转" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "行" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS 文件: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "饱和度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "保存" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "保存和安装" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "保存并重新加载" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "保存记录" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "搜索文档" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "搜索象形图" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "搜索图像" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "搜索一个块(例如数字,图像墙,…)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "搜索记录..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "搜索更多。。。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "搜索以显示更多记录" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "次要的" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "在您的页面上选择一个构造块来设计它。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "选择媒体" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "分隔符" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "褐色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "服务器错误" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "阴影" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "形状" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "形状:圆形" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "形状:圆形" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "形状:缩略图" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "显示优化的图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "签名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "尺寸" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "尺寸1倍" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "尺寸 2倍" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "尺寸3倍" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "尺寸4倍" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "尺寸5倍" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "小" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "小型章节标题。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "实体" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "实线" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "拥有升级权限的人之前修改了此区域,因此您无法自己修改它。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "特价" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "结构" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "风格" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "建议" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "切换方向" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "切换文本的方向." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "表格" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "表格选项" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "表格工具" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "模板ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "文本" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "文本颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "文本对齐" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "文本样式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "该网址似乎无效。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "该网址似乎有效。" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "日期时间 %s 格式不匹配 %s" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "该文档已经被保存,保存者的历史记录与模型%r、字段%r和ID %r不一致。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "提供的网址不存在参考任何支持的视频" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "提供的网址是无效的" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "提供的网址无效" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" +"将使用数据库中的版本。\n" +" 如果您需要保留更改,请复制下面的内容并编辑新文档。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "主题" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "主题颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "您的版本与数据库中的版本存在冲突。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "这个URL是无效的。预览不能被更新。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "这个构造块已经过时了" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "本文档没有被保存!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "该文件为公共查看的附件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "此文件已附加到当前记录。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "这个图像是一个外部图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "这种类型的图像不支持裁剪。
如果您想裁剪,请先从原始来源下载并在Odoo中上传。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "称谓" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "标题标签" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "要进行修改,请放弃这个构造块,使用最后一个版本中的新选项。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "要保存一个片段,我们需要保存您之前的所有修改并重新加载页面。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "待办" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "切换粗体" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "切换清单" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "切换图标旋转" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "切换斜体" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "切换有序列表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "切换删除线" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "切换下划线" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "切换无序列表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "提示框" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "使用清单跟踪任务。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "转换" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "转换图片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "转换图片(双击重置转换)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "翻译" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "透明颜色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "尝试使用其他关键字进行搜索。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "类型" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "键入“/”作为命令" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "网址或EMail" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "取消对齐" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "意外 " + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "上传文档" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "上传图像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "上传的图像格式不支持。试一试:" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "上传的图像格式不被支持。请尝试使用:%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "瓦伦西亚" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "视频" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "视频格式化" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "视频代码" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "视频" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "启用自动播放后,视频将静音" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "视图" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "视图和资产包" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "瓦尔登湖" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "警告:关闭此对话框后,您正在使用的版本将被丢弃并且将不再可用。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "波浪" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "网络编辑器转换器子测试" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "网络编辑器转换器测试" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "挂件" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "宽度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "写些什么..." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "XL" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "是" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "您可以使用屏幕左上方的按钮上传文档。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "您可以使用屏幕左上方的按钮上传图像。" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "您需要指定数据或URL来创建附件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "您的網址" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "放大" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "缩小" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "添加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "and" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "自动" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "变黑" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "默认" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "排除" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "变亮" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "多层的" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "覆盖" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "屏幕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "视频" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "网页登录消息处理" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_TW.po b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_TW.po new file mode 100644 index 0000000..7ef6eaf --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/i18n/zh_TW.po @@ -0,0 +1,3422 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_editor +# +# Translators: +# Martin Trigaux, 2023 +# Wil Odoo, 2025 +# Tony Ng, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-05-08 20:35+0000\n" +"PO-Revision-Date: 2022-09-22 05:55+0000\n" +"Last-Translator: Tony Ng, 2025\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Original)" +msgstr "%dpx(原始)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%dpx (Suggested)" +msgstr "%dpx(建議)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "%spx" +msgstr "%spx" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "" +"'Alt tag' specifies an alternate text for an image, if the image cannot be " +"displayed (slow connection, missing image, screen reader ...)." +msgstr "如果無法顯示圖像,則「Alt tag」指定圖像的替代文本(連接速度慢,圖像遺失,螢幕閱讀器......)。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "'Title tag' is shown as a tooltip when you hover the picture." +msgstr "'標題標籤' 當您移動鼠標到圖片上面懸停的時候顯示標記說明." + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(ALT Tag)" +msgstr "(ALT 標籤)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "(TITLE Tag)" +msgstr "(TITLE 標籤)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "(URL or Embed)" +msgstr "(網址或嵌入)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "100%" +msgstr "100%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "1977" +msgstr "1977" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "1x" +msgstr "1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "2 columns" +msgstr "2 欄" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "25" +msgstr "25" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "25%" +msgstr "25%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "2x" +msgstr "2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "3 Stars" +msgstr "3 粒星" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "3 columns" +msgstr "3 欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "3x" +msgstr "3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "4 columns" +msgstr "4 欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "4x" +msgstr "4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "5 Stars" +msgstr "5 粒星" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "50%" +msgstr "50%" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "5x" +msgstr "5x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "90" +msgstr "90" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "%" +msgstr "%" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "deg" +msgstr "" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Y" +msgstr "Y" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "X" +msgstr "X" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Blocks" +msgstr "內容區塊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Customize" +msgstr "自訂" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"A server error occured. Please check you correctly signed in and that the " +"file you are saving is correctly formatted." +msgstr "出現伺服器錯誤。請正確登入,並正確儲存您儲存的文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Above" +msgstr "上方" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Accepts" +msgstr " 接受" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Add" +msgstr "增加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Column" +msgstr "加入直欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add Row" +msgstr "加入列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Add URL" +msgstr "加入網上圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a blockquote section." +msgstr "加入引用文字區塊。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a button." +msgstr "加入按鈕。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a code section." +msgstr "加入程式碼段落。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column left" +msgstr "向左加入一欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a column right" +msgstr "向右加入一欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Add a link." +msgstr "加入連結。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row above" +msgstr "向上加入一列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Add a row below" +msgstr "向下加入一列" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Aden" +msgstr "Aden" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Airy & Zigs" +msgstr "輕逸、幼線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Alert" +msgstr "警示" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Center" +msgstr "置中對齊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Left" +msgstr "向左對齊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Align Right" +msgstr "向右對齊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alignment" +msgstr "對齊" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "All" +msgstr "所有" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "All SCSS Files" +msgstr "All SCSS Files" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "All documents have been loaded" +msgstr "已載入所有文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "All images have been loaded" +msgstr "已完成載入所有圖片" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Alt tag" +msgstr "Alt 標籤" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Angle" +msgstr "角度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Animated" +msgstr "動畫" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Anonymous" +msgstr "匿名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Apply" +msgstr "套用" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Are you sure you want to delete the snippet: %s ?" +msgstr "確定要刪除小摘要「%s」?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "Are you sure you want to delete this file ?" +msgstr "是否確實要刪除此檔?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Aspect Ratio" +msgstr "寬高比" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_assets +msgid "Assets Utils" +msgstr "資產使用" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_attachment +msgid "Attachment" +msgstr "附件" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url +msgid "Attachment URL" +msgstr "附件網址" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Autoconvert to relative link" +msgstr "自動轉換為相對連結" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Autoplay" +msgstr "自動播放" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Back to one column." +msgstr "換回單一欄位結構。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background" +msgstr "背景" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Background Color" +msgstr "背景顏色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Background Position" +msgstr "背景位置" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_base +msgid "Base" +msgstr "基礎" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Basic blocks" +msgstr "基本區塊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Basics" +msgstr "基礎" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Below" +msgstr "下方" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Big section heading." +msgstr "大字章節標題。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blobs" +msgstr "流體、油污效果" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Block" +msgstr "區塊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Blocks & Rainy" +msgstr "大色塊、灑雨效果" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Blur" +msgstr "模糊" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Bold" +msgstr "粗大色塊" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border" +msgstr "邊框" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Color" +msgstr "邊框顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Style" +msgstr "邊框樣式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Border Width" +msgstr "邊框寬度" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brannan" +msgstr "Brannan" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Brightness" +msgstr "亮度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Bulleted list" +msgstr "點列清單" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Button" +msgstr "按鈕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Careful !" +msgstr "小心!" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Center" +msgstr "中間" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0 +#, python-format +msgid "Change media description and tooltip" +msgstr "更改媒體說明和工具提示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Checklist" +msgstr "剔選清單" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Choose a record..." +msgstr "選擇一項⋯" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Close" +msgstr "關閉" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Code" +msgstr "程式碼" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Color" +msgstr "顏色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Color filter" +msgstr "色彩濾鏡" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Colors" +msgstr "色彩組合" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Column" +msgstr "欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Common colors" +msgstr "通用顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirm" +msgstr "確認" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Confirmation" +msgstr "確認" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Content conflict" +msgstr "內容衝突" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Contrast" +msgstr "對比" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 2 columns." +msgstr "轉換為 2 欄結構。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 3 columns." +msgstr "轉換為 3 欄結構。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Convert into 4 columns." +msgstr "轉換為 4 欄結構。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Copy Link" +msgstr "複製連結" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Copy-paste your URL or embed code here" +msgstr "複製並貼上你的網址,或在此處嵌入程式碼" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Could not install module %s" +msgstr "無法安裝模組%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_service.js:0 +#, python-format +msgid "Could not load the file \"%s\"." +msgstr "未能載入檔案 %s。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Cover" +msgstr "封面" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Create" +msgstr "建立" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a list with numbering." +msgstr "加入依序編號清單。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create a simple bulleted list." +msgstr "加入基本點列式清單。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Create an URL." +msgstr "加入網址。" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid +msgid "Created by" +msgstr "創立者" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date +msgid "Created on" +msgstr "建立於" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Crop Image" +msgstr "裁剪圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Custom" +msgstr "自訂" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Custom %s" +msgstr "Custom %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Dailymotion" +msgstr "Dailymotion" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dashed" +msgstr "虛線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Default" +msgstr "預設" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Default + Rounded" +msgstr "預設 + 圓角" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Define a custom gradient" +msgstr "設計自訂漸變色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Delete" +msgstr "刪除" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Delete %s" +msgstr "刪除 %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Delete current table" +msgstr "刪除當前表格" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Description" +msgstr "描述" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Devices" +msgstr "設備" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0 +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Discard" +msgstr "捨棄" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Discard record" +msgstr "捨棄記錄" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Do you want to install the %s App?" +msgstr "您要安裝 %s 模組嗎?" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Documents" +msgstr "文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Dotted" +msgstr "點點線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Double" +msgstr "雙實線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Double-click to edit" +msgstr "點兩下來編輯" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Drag and drop the building block." +msgstr "只須拖曳內容區塊,放置在頁面上。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Duplicate Container" +msgstr "複製此部份" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Dynamic Colors" +msgstr "動態顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Dynamic Placeholder" +msgstr "動態佔位符" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "ERROR: couldn't get download urls from media library." +msgstr "錯誤:無法從媒體庫中獲取下載 URL。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "EarlyBird" +msgstr "EarlyBird" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Edit Link" +msgstr "編輯連結" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Edit image" +msgstr "編輯圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Edit media description" +msgstr "編輯媒體描述" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "" +"Editing a built-in file through this editor is not advised, as it will " +"prevent it from being updated during future App upgrades." +msgstr "不建議通過此編輯器編輯內置文件,因為它會阻止在以後的 App 升級期間更新。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Image" +msgstr "插入圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed Youtube Video" +msgstr "插入 YouTube 影片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the image in the document." +msgstr "將圖片嵌入至文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Embed the youtube video in the document." +msgstr "將 YouTube 影片嵌入至文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Empty quote" +msgstr "空白引用" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Expected " +msgstr "預期的" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest corner" +msgstr "延伸到最近的角落" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the closest side" +msgstr "延伸到最近的一側" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest corner" +msgstr "延伸到最遠的角落" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Extend to the farthest side" +msgstr "延伸到最遠的一側" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0 +#, python-format +msgid "File has been uploaded" +msgstr "文件已上傳" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill" +msgstr "填滿" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill + Rounded" +msgstr "填充 + 圓角" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Fill Color" +msgstr "填充顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Filter" +msgstr "濾鏡" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "First Panel" +msgstr "第一面板" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flat" +msgstr "平坦" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "Flexible" +msgstr "靈活" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Flip" +msgstr "反轉" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Horizontal" +msgstr "水平翻轉" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Flip Vertical" +msgstr "垂直翻轉" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Floating shapes" +msgstr "浮動形狀" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Floats" +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font Color" +msgstr "文字顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Font size" +msgstr "文字大小" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "For technical reasons, this block cannot be dropped here" +msgstr "由於技術原因,此方塊不可放置此處" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Format" +msgstr "格式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Fullscreen" +msgstr "全螢幕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"Get the perfect image by searching in our library of copyright free photos " +"and illustrations." +msgstr "通過在我們的免版權照片和插圖庫中搜索來獲得完美的圖像。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Gradient" +msgstr "漸變" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 1" +msgstr "標題1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 2" +msgstr "標題2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 3" +msgstr "標題3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 4" +msgstr "標題4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 5" +msgstr "標題5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Header 6" +msgstr "標題6" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 1" +msgstr "標題 1" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 2" +msgstr "標題 2" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 3" +msgstr "標題 3" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 4" +msgstr "標題 4" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 5" +msgstr "標題 5" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Heading 6" +msgstr "標題 6" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Height" +msgstr "高度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide Dailymotion logo" +msgstr "隱藏Dailymotion標誌" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide fullscreen button" +msgstr "隱藏全螢幕按鈕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide player controls" +msgstr "隱藏播放器控件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Hide sharing button" +msgstr "隱藏分享按鈕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/field_html.js:0 +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Html" +msgstr "Html" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id +msgid "ID" +msgstr "ID" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon" +msgstr "圖示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Icon Formatting" +msgstr "圖示格式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 1x" +msgstr "圖示大小 1x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 2x" +msgstr "圖示大小 2x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 3x" +msgstr "圖示大小 3x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 4x" +msgstr "圖示大小 4x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Icon size 5x" +msgstr "圖示大小 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Icons" +msgstr "圖示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"If you discard the current edits, all unsaved changes will be lost. You can " +"cancel to return to edit mode." +msgstr "若你放棄目前的編輯,所有未儲存的修改將會消失。你可以按「取消」返回編輯模式。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "" +"If you reset this file, all your customizations will be lost as it will be " +"reverted to the default file." +msgstr "如果您重置此文件,您的所有自訂將遺失,因為它將被還原為預設文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Illustrations" +msgstr "插圖" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Image" +msgstr "圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Image Formatting" +msgstr "圖片格式" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height +msgid "Image Height" +msgstr "圖片高度" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src +msgid "Image Src" +msgstr "圖片來源" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width +msgid "Image Width" +msgstr "圖片寬度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Image padding" +msgstr "圖片內間距" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Images" +msgstr "圖片" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Inkwell" +msgstr "Inkwell" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Inline Text" +msgstr "內文文字" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 3 stars." +msgstr "滿分為 3 星的評分工具。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a rating over 5 stars." +msgstr "滿分為 5 星的評分工具。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert a table." +msgstr "插入表格。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert a video." +msgstr "插入影片。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert above" +msgstr "向上插入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert an horizontal rule separator." +msgstr "插入水平分隔線。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert an image." +msgstr "插入圖片。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert below" +msgstr "向下插入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert left" +msgstr "向左插入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert media" +msgstr "插入媒體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert or edit link" +msgstr "插入或編輯連結" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Insert personalized content" +msgstr "插入個人化內容" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Insert right" +msgstr "向右插入" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Insert table" +msgstr "插入表格" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Insert your signature." +msgstr "加入你的電子簽名。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install" +msgstr "安裝" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install %s" +msgstr "安裝 %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Install in progress" +msgstr "安裝中" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid field value for %s: %s" +msgstr "%s 的欄位值無效:%s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Invisible Elements" +msgstr "隱藏項目" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Item" +msgstr "項目" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "JS" +msgstr "JS" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "JS file: %s" +msgstr "JS file: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Large" +msgstr "大" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Left" +msgstr "左" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Linear" +msgstr "線性" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Lines" +msgstr "明細列表" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Link" +msgstr "連結" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Link Label" +msgstr "連結標籤" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "Link copied to clipboard." +msgstr "連結已復製到剪貼板。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Link to" +msgstr "連接到" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "List" +msgstr "清單" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Load more..." +msgstr "載入更多⋯" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Loop" +msgstr "循環" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Main Color" +msgstr "主要顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/backend/html_field.js:0 +#, python-format +msgid "Marketing Tools" +msgstr "推廣工具" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Maven" +msgstr "Maven" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Media" +msgstr "媒體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Medium" +msgstr "媒體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Medium section heading." +msgstr "中等字號章節標題。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "More info about this app." +msgstr "有關此模組的更多資訊。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move down" +msgstr "向下移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move left" +msgstr "向左移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move right" +msgstr "向右移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Move up" +msgstr "向上移動" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "My Images" +msgstr "我的圖片" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name +msgid "Name" +msgstr "名稱" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Navigation" +msgstr "資訊存取" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No" +msgstr "否" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "No URL specified" +msgstr "未設定網址" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "No documents found." +msgstr "未找到任何文檔。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "No images found." +msgstr "找不到圖片。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "No location to drop in" +msgstr "無處可放置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "No more records" +msgstr "沒有更多記錄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "No pictograms found." +msgstr "找不到象形圖示。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "None" +msgstr "無" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +#, python-format +msgid "Normal" +msgstr "正常" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Numbered list" +msgstr "編號清單" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.tests +msgid "Odoo Editor Tests" +msgstr "Odoo 編輯工具測試" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Custom SCSS Files" +msgstr "僅自訂 SCSS 檔" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Page SCSS Files" +msgstr "僅頁面 SCSS 檔" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Only Views" +msgstr "僅視圖" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Open in a new tab" +msgstr "以新分頁開啟" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Open in new window" +msgstr "在新頁面中打開" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "Optimized" +msgstr "優化" + +#. module: web_editor +#: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id +msgid "Original (unoptimized, unresized) attachment" +msgstr "原始(未優化、未調整大小)附件" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Origins" +msgstr "基本幾何圖形" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline" +msgstr "輪廓" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Outline + Rounded" +msgstr "輪廓+圓角" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Padding" +msgstr "內邊距" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Page Options" +msgstr "頁面選項" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paragraph block." +msgstr "一般文字段落。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Paste as URL" +msgstr "貼上為網址" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Patterns" +msgstr "型式" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Position" +msgstr "位置" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Preview" +msgstr "預覽" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Primary" +msgstr "主要" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c +msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" +msgstr "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a +msgid "Qu'il n'est pas arrivé à Toronto" +msgstr "Qu'il n'est pas arrivé à Toronto" + +#. module: web_editor +#: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b +msgid "Qu'il était supposé arriver à Toronto" +msgstr "Qu'il était supposé arriver à Toronto" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Quality" +msgstr "品質" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Quote" +msgstr "引用" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb +msgid "Qweb" +msgstr "Qweb" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field +msgid "Qweb Field" +msgstr "Qweb欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_contact +msgid "Qweb Field Contact" +msgstr "Qweb 聯絡人欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_date +msgid "Qweb Field Date" +msgstr "Qweb日期欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_datetime +msgid "Qweb Field Datetime" +msgstr "Qweb日期時間欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_duration +msgid "Qweb Field Duration" +msgstr "Qweb期間欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_float +msgid "Qweb Field Float" +msgstr "Qweb浮點型欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_html +msgid "Qweb Field HTML" +msgstr "QwebHTML欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb圖像欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_integer +msgid "Qweb Field Integer" +msgstr "Qweb整數欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_many2one +msgid "Qweb Field Many to One" +msgstr "Qweb多對一欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_monetary +msgid "Qweb Field Monetary" +msgstr "Qweb 欄位貨幣" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_relative +msgid "Qweb Field Relative" +msgstr "Qweb關聯欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_selection +msgid "Qweb Field Selection" +msgstr "Qweb選擇欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_text +msgid "Qweb Field Text" +msgstr "Qweb文本欄位" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_qweb_field_qweb +msgid "Qweb Field qweb" +msgstr "Qweb欄位" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Radial" +msgstr "放射性" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Readonly field" +msgstr "唯讀欄位" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Redirect the user elsewhere when he clicks on the media." +msgstr "用戶點按媒體時,重新導向至其他地方。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove (DELETE)" +msgstr "移除(刪除)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Remove Block" +msgstr "移除區塊" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove Current" +msgstr "移除目前項目" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Remove Link" +msgstr "移除連結" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +msgid "Remove Selected Color" +msgstr "刪除所選顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Remove columns" +msgstr "移除分欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current column" +msgstr "移除目前欄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove current row" +msgstr "移除目前列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove format" +msgstr "移除格式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Remove link" +msgstr "移除連結" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Rename %s" +msgstr "重命名%s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Repeat pattern" +msgstr "重複圖案" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Replace" +msgstr "更換" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Replace media" +msgstr "更換媒體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Reset" +msgstr "重設" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Reset Image" +msgstr "重設圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Reset Size" +msgstr "重設大小" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset crop" +msgstr "重置裁剪" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Reset transformation" +msgstr "重置轉換" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Reseting views is not supported yet" +msgstr "不支援重置視圖" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Default" +msgstr "調整至預設大小" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Full" +msgstr "調整大小為全螢幕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Half" +msgstr "調整大小為一半" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Resize Quarter" +msgstr "調整大小為四分之一" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Right" +msgstr "右" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Left" +msgstr "向左旋轉" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Rotate Right" +msgstr "向右旋轉" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Row" +msgstr "橫列" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "SCSS (CSS)" +msgstr "SCSS (CSS)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "SCSS file: %s" +msgstr "SCSS 文件: %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Saturation" +msgstr "飽和度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Save" +msgstr "儲存" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Save and Install" +msgstr "儲存並安裝" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Save and Reload" +msgstr "儲存並重新載入" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Save record" +msgstr "儲存記錄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Search a document" +msgstr "搜尋文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0 +#, python-format +msgid "Search a pictogram" +msgstr "搜尋圖示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Search an image" +msgstr "搜尋圖片" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +msgid "Search for a block (e.g. numbers, image wall, ...)" +msgstr "搜尋內容方塊(例:數字、圖片牆⋯)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search for records..." +msgstr "搜尋記錄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search more..." +msgstr "搜尋更多⋯" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Search to show more records" +msgstr "搜尋以顯示更多記錄" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0 +#, python-format +msgid "Secondary" +msgstr "次要" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Select a block on your page to style it." +msgstr "在頁面選取區塊,以設定樣式。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Select a media" +msgstr "選取媒體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippets +#, python-format +msgid "Separator" +msgstr "分隔線" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Sepia" +msgstr "泛黃" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Server error" +msgstr "伺服器錯誤" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shadow" +msgstr "陰影" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#, python-format +msgid "Shape" +msgstr "圖形" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Circle" +msgstr "形狀:圓形" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Rounded" +msgstr "形狀:圓角" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Shape: Thumbnail" +msgstr "形狀:縮圖" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "Show optimized images" +msgstr "顯示最佳化圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Signature" +msgstr "簽名" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Size" +msgstr "尺寸" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 1x" +msgstr "尺寸 1x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 2x" +msgstr "尺寸 2x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 3x" +msgstr "尺寸 3x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 4x" +msgstr "尺寸 4x" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Size 5x" +msgstr "尺寸 5x" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Small" +msgstr "小" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Small section heading." +msgstr "細字章節標題。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Solid" +msgstr "實色" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Solids" +msgstr "立體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "" +"Someone with escalated rights previously modified this area, you are " +"therefore not able to modify it yourself." +msgstr "擁有更高權限的人之前曾修改過此區域,因此你無法自行修改。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Specials" +msgstr "特殊動作" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Structure" +msgstr "文章結構" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Style" +msgstr "樣式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Suggestions" +msgstr "建議" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch direction" +msgstr "變換方向" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Switch the text's direction." +msgstr "切換文稿的行文方向。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Table" +msgstr "表格" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table Options" +msgstr "表格選項" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Table tools" +msgstr "表格工具" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Template ID: %s" +msgstr "模板ID: %s" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Text" +msgstr "文字" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Text Color" +msgstr "文字顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text align" +msgstr "文字對齊" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Text style" +msgstr "文字樣式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL does not seem to work." +msgstr "網址看似無效。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0 +#, python-format +msgid "The URL seems valid." +msgstr "網址看似有效。" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/models/ir_qweb_fields.py:0 +#, python-format +msgid "The datetime %s does not match the format %s" +msgstr "日期時間值 %s 不符合 %s 格式" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "" +"The document was already saved from someone with a different history for " +"model %r, field %r with id %r." +msgstr "文件已由其他有不同歷史記錄的人儲存。歷史記錄相異項目:模型 %r、欄位 %r 連識別碼 %r。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url does not reference any supported video" +msgstr "提供的網址不存在任何支援的影片" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/tools.py:0 +#, python-format +msgid "The provided url is invalid" +msgstr "提供的網址無效" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "The provided url is not valid" +msgstr "提供的網址無效" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"The version from the database will be used.\n" +" If you need to keep your changes, copy the content below and edit the new document." +msgstr "" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Theme" +msgstr "設計主題" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Theme colors" +msgstr "主題色彩組合" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "There is a conflict between your version and the one in the database." +msgstr "你的版本與資料庫中的版本存有衝突。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0 +#, python-format +msgid "This URL is invalid. Preview couldn't be updated." +msgstr "此網址無效。無法更新預覽。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "This block is outdated" +msgstr "此區塊已過時" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "This document is not saved!" +msgstr "本文件沒有被儲存!" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is a public view attachment." +msgstr "此檔是公共視圖附件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0 +#, python-format +msgid "This file is attached to the current record." +msgstr "此檔附加到目前記錄。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "This image is an external image" +msgstr "這個圖像是一個外部圖像" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0 +#, python-format +msgid "" +"This type of image is not supported for cropping.
If you want to crop " +"it, please first download it from the original source and upload it in Odoo." +msgstr "不支援裁剪這種類型的圖片。
如果您想裁剪它,請先從原始來源下載並在Odoo中上傳。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "Title" +msgstr "標題" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Title tag" +msgstr "標題標籤" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/snippets.xml:0 +#, python-format +msgid "" +"To make changes, drop this block and use the new options in the last " +"version." +msgstr "要進行更改,請刪除此區塊並使用新版本。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "" +"To save a snippet, we need to save all your previous modifications and " +"reload the page." +msgstr "要儲存代碼段,我們需要儲存您之前的所有修改並重新加載頁面。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "To-do" +msgstr "待辦事項" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Toaster" +msgstr "Toaster" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle bold" +msgstr "粗體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle checklist" +msgstr "剔選清單" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle icon spin" +msgstr "切換圖示旋轉" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle italic" +msgstr "斜體" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle ordered list" +msgstr "編號清單" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle strikethrough" +msgstr "刪除線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle underline" +msgstr "底線" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Toggle unordered list" +msgstr "點列清單" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Tooltip" +msgstr "工具提示" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Track tasks with a checklist." +msgstr "以剔選方式追蹤任務完成情況。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform" +msgstr "轉換" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Transform the picture" +msgstr "變換圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "Transform the picture (click twice to reset transformation)" +msgstr "圖片變形(按兩下重設)" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#: code:addons/web_editor/static/src/xml/backend.xml:0 +#, python-format +msgid "Translate" +msgstr "翻譯" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0 +#, python-format +msgid "Transparent colors" +msgstr "透明顏色" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/icon_selector.xml:0 +#, python-format +msgid "Try searching with other keywords." +msgstr "請嘗試使用其他關鍵字搜尋。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.colorpicker +#, python-format +msgid "Type" +msgstr "類型" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Type \"/\" for commands" +msgstr "鍵入斜線 \"/\" 查看格式選項" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "URL or Email" +msgstr "網址或電郵" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "Unalign" +msgstr "取消對齊" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/common/ace.js:0 +#, python-format +msgid "Unexpected " +msgstr "預期外" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0 +#, python-format +msgid "Upload a document" +msgstr "上傳文件" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Upload an image" +msgstr "上載圖片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: " +msgstr "圖片格式未支援。請使用 " + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "Uploaded image's format is not supported. Try with: %s" +msgstr "圖片格式未支援。請使用 %s" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Valencia" +msgstr "華倫西亞" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0 +#, python-format +msgid "Video" +msgstr "影片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Video Formatting" +msgstr "影片格式" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Video code" +msgstr "影片代碼" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0 +#, python-format +msgid "Videos" +msgstr "影片" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0 +#, python-format +msgid "Videos are muted when autoplay is enabled" +msgstr "啟用自動播放時,影片處於靜音狀態" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_ui_view +msgid "View" +msgstr "檢視" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "Views and Assets bundles" +msgstr "視圖和資產捆綁包" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Vimeo" +msgstr "Vimeo" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Walden" +msgstr "Walden" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "" +"Warning: after closing this dialog, the version you were working on will be " +"discarded and will never be available anymore." +msgstr "警告:關閉此對話框後,你正在編輯的版本將會丟棄,永遠無法再用。" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "Wavy" +msgstr "波浪" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test_sub +msgid "Web Editor Converter Subtest" +msgstr "Web編輯器轉換器子測試" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_web_editor_converter_test +msgid "Web Editor Converter Test" +msgstr "Web編輯器轉換器測試" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0 +#, python-format +msgid "Widgets" +msgstr "小工具" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Width" +msgstr "寬度" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.options.js:0 +#, python-format +msgid "Write something..." +msgstr "寫些東西⋯" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "XL" +msgstr "特大" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#: code:addons/web_editor/static/src/xml/ace.xml:0 +#, python-format +msgid "XML (HTML)" +msgstr "XML (HTML)" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "Xpro" +msgstr "Xpro" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0 +#, python-format +msgid "Yes" +msgstr "是" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0 +#, python-format +msgid "" +"You can upload documents with the button located in the top left of the " +"screen." +msgstr "您可以使用螢幕左上角的按鈕上傳文件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0 +#, python-format +msgid "" +"You can upload images with the button located in the top left of the screen." +msgstr "你可使用螢幕左上角的按鈕上載圖片。" + +#. module: web_editor +#. odoo-python +#: code:addons/web_editor/controllers/main.py:0 +#, python-format +msgid "You need to specify either data or url to create an attachment." +msgstr "您需要指定資料或 URL 以建立附件。" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youku" +msgstr "Youku" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +#, python-format +msgid "Your URL" +msgstr "輸入網址" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "Youtube" +msgstr "Youtube" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom In" +msgstr "放大" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "Zoom Out" +msgstr "縮小" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "add" +msgstr "相加" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "and" +msgstr "與" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options +msgid "auto" +msgstr "自動" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "darken" +msgstr "變暗" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/editor.xml:0 +#, python-format +msgid "default" +msgstr "預設" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "exclusion" +msgstr "排除" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "lighten" +msgstr "變亮" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "multiply" +msgstr "相乘" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "overlay" +msgstr "覆蓋" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 +#, python-format +msgid "px" +msgstr "px" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets +msgid "screen" +msgstr "螢幕" + +#. module: web_editor +#. odoo-javascript +#: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0 +#, python-format +msgid "videos" +msgstr "影片" + +#. module: web_editor +#: model:ir.model,name:web_editor.model_ir_websocket +msgid "websocket message handling" +msgstr "WebSocket 訊息處理" + +#. module: web_editor +#: model_terms:ir.ui.view,arch_db:web_editor.snippet_options +msgid "www.example.com" +msgstr "www.example.com" diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/__init__.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/__init__.py new file mode 100644 index 0000000..393b072 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/__init__.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import ir_attachment +from . import ir_qweb_fields +from . import ir_ui_view +from . import ir_http +from . import ir_websocket +from . import models + +from . import assets + +from . import test_models diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/__init__.cpython-312.pyc b/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1c773a95419b33955ff426e56438f117b7ff8af GIT binary patch literal 473 zcmX@j%ge>Uz`($wxhg}Kk%8echy%k+P{!vJ1_p-d3@HpLj5!Rsj8Tk?AU0DDLoQPk z6PV4M!;s4y#SCV%I`;W_(#@YPlxkE%wZ!_>7X00!_wSJefuD<*7-<`N`R-Agye<`6;P6AT4Z(#l@*5 zAQpE?YH>+CM8Z##^A-$1`0F*!RiJ+)XrKP5k37bc;bpPZUz`($wxhg|Ifq~&Mhy%l{P{!vj1_p-d3@HpLj5!QZ5SlTHF@+(8DTgVS zIf^-#C5nX+B+i_}n#&f&24=J5u;+3_aWFD4F{CnP2|>+5qEc8_GeWpgTucn^3@L0a z3@PlXELma@QDky8GlUn#Q^}~w@e;)G(`35EoLG=~i!C=lB{ip5lkpZyZf0?^CgUwG z*N6~TzhF;)zu+phIDL(na&1k04LxmpO^q16JBrY6kIFQtE<50t!!ii)X4-QpaNG9>(P{WO+hOd%UlkXOrV{vh6NpY26 zd1_L8YD#8Fevw`xM2H6>r4U+@nNyq$3vf{Iu`n<&fcT%6fKy!!Ll!iZfFxnKhOvfe zH4}ta%Ur{d1=0cG!pRzDSo+F>rDV7q13ao28EP1^*pVclOk#CcGHNm<8Za_2a4A56 zOKMJPNvc9gMyf(Veo1OxNoHb>0wmRCRwb5X=I0eF9rb1d~PAbA!kTFT6c_}%mP?JzB0Lg+pke8U73Nsq2Ix|n9JR>tX18g0d zw@UIAQoz2)FswYaC>88$xQw4B%Pq0^+{EnEc!(+SV4ugA7UkR$i%(B2feV+EBqnF% zrskF0Vk^zd$;`{XC5R#qN>Q3Dw^)i(bJA`xgY>gO+LGcP^Av_#)PzaTL=J25@ASU*1{KVKInp_`wasGFahq>D(% z`bbPj0i+Lhf3aRcBEUF49PQFWO^>pF+w zMGnKO9LAqPX*L--k+Z=vkqk4a1S297v6jHIP!=etKt>|r8s-YdVkSn06h>^BC4~u= z)nIfjTMa`NCz1hBW(~a1uVt@cFA}X`&*FwkAyFyJHEfxTFtZpLCNSpl)-Y!AA}N6~ zQ&?cCQdlJ!7#LF6YFJX(vo#nPDj17E?&W~Go3nhgmIm4R?`Y4R@9VOb$V(@K-S~Fw}6R2-tvV?kp*U9E?@Nl_Ch0 zm4S&N=o+pRA&_jIVGYx4#uVWiR$}62Hsf4oxUHO7@(A-_EaYMx?gCD%p~^)tR7F6c znxzOc8$rY3l#!uQR8uTbk_oBsb_TZ&GOHlvcXECnr~n6*fUuGpoXL^PRicXOqGV0f z5*$<#feKjMMR!R)ywXTj&?wJHEy+kNQphh-$jdJQmA&wS6l4?#LtIv#SgeqkQMXvbvH(Yyr69TaftS;guKiOI?NMJbti>7eQt6ayf0 z6p~UwB9Pi5vnn+OZrCkGt}52jk~Ce5TdXOGC5gqi81-NN|NsC0Ew-f0yu_l)TTEHS zRs1EX6(#yviDik!$wiq3B~_eY0g%m_thZP|fq9Ds1)_{kaPDCJz{Vh}cwNT)qKx?tuFEpc7dRwu za?5;RW8js$&ZB&hM|nZ`iqs1#Cf9gOKX5Tf%FO4S$+8e&lA8;_LAGz{kKVew|15B9H8hl!iz>v!hp%=m;E;&SAP>F&YpnF}-@uHgJ0p$Z_m(~1W=I{vj`*r%w zu)M;f`hbI{pQDpwg5*UG>FXRC7dbSpa%dHaFfcIqC9@!kdj@!8sDhD!p`CF$Lk&}d zAoeCvC!zvns$oiD0#zYJfhml&EH%sxLfHEmNP1ZEL~59^^)@;f(->2jTi{KBT9z7? z3dSONMurl2-y@3y$<0t^4NDd%r$Tu!3Rd+&n>H-L3?-mk2bRtPWg{>PL3A==YuX_C z-zjV*pwti6u!bGh*EVISWvyYwR{6pz&}60*Mi7Mc#26WZ8I&0e8HyRpnHU)&85kKD z87dhom?Ig=88tZ)+nA9mTDQ~^SRVqZlFh@>Z_!f-$w(}L*ASV-3aQ}I9bQg@O7i?X zcwYrt)PVau3i)~9DkdefI2%+ApeaqxFDgncF38UVRSIzPAjOLUs3?Y)%nC)Rpt^&o z3LjhF45LB=J5L|Q4%9lXv?wP&GcPS)K_ewIxkN`HzW~&IOw7U2n1J~j)IEe~D^5*S z0GGX>x+^}dC_fj}ztU9DNX*H}FE0kwfgm$;GpjIb?&AF1R0U9_0PXL=S``_IWsuep z*owrw6or(0aHFI=F%Q%-$t;G4BCK#tE6qy=xg2C)QL1iwYKcN-30j*365`MT9Msz@ zR?t8R8VyaN0{~(c*4QfsrvF2N)+-^k*a){qf7D?ic=Gdk~0)C^Gfou1(^cA zAi@ZQ5>N`p8DDyrzEu~KDDAmllzts*mRV{4r$78K$NAX6sdt4B%l^g zN-8LEgPRjYpuRJ-p^;yZns_qecsFJ}KJV~Iy0F8(JXkhrD$G{_Ufm`~9xb$^#y^G>{ zD~d0R8+Uj-;1-_XbBSB=0~>>sT!+^Ue#Hy?nm1$>ugh9ol(pC)d|B3ZBG&_1eF*=u zrT=BwfC*eTgk>)YyDU+=u4Hsk$!LSsbz|p?#?F_OTrLUwo?yMelo(qy^`>k-<6Lpo>v4(K;}^JTbx2IW$$x&w_geE!7%8ks18iDMtaL#d9787moUn6Oo^De&)4L4zdVR&1V)X zBqDXd6~K)XaOWMS9oM zWEO)fY!nBA&C!IXAGepFYT+d)>)vA2dkHEaUxM=OOHj*NlLb8MQks)`i?;|l5{j%q zoj6b*RFmbFbbM}NNpc3H!xazi#eoXWqSW-%id(E;xm&F1Mfs%#w^+d8$c$9RGUgV8 ztW!`>02iA@4h#$oRg%bsBuXjY4Jski!6T|)bQpLwuJh<#pG@CJnv4$Da=a|hnmo=C{lQnTF^2`DxYk?CeJib#D%2JDpGxPI6NdsP3ga-NO zC_owhl`JfYW1SfR^}LET!O8rC41=J^bgqe9GmIB7UKUX5V7;NDxk7QV$Eutit_Ku% zd0gOky};p$nNUGl8JtjKz%_6UQwn1lLovG-Lkbhfcu!IB$cu@~6njtXrohaVcK$NwbOt+Xa^KLQPRtb3Kl_i3*2h6%6&?q^$S*^)bqzh`gvO%oXgcg>d zA+cLb`30z@C205#k(97brtJZhn4m#?@EnwY(1hrV{0bL1OfD#yT;?#jz^`zFU%0=b zvtkDSMShLz{Q4L9^*5;Q5ZV!S!O-J^f#+p@uL~Srkkkdr0H9<8!tm5p21#8wia}Vb zs0cLY!IZ)*#gNBX!&u8y!;pn+8puS@tPTsPn8e!hV@+YJVM0rH?1}QY(;a9mkfbE1 zpiz>6=pAR~Wuz8mmVla8Wtpkv(7rKjj1`m?P|HDuq)Kohhm`R0^HMdbo{r%O8Ed%+ zN_ilUqa->=H;OT)2vmys6)AwqGEleg7E4ZMHfYe9tGEPIOqFMrWPsCNQ33-419HLx zCrs3o2kNp_Nx%v*DkIYG)V2?j;&>k6h96-+l|Ur})C$eJNIL#Q+F1Xl+$ zEa`Dw0fY{)I4OA6RXUJp# z^-rtjp@$4OIucV-GC?B}i8%^oi8-aI;Gqy`z6OtagH^dWfd-EdQ3p2)(Zy2$4S;}) z5(V%8cxHYcQru#V3{YbjZqiByO-67vQ4DfEw6UWDYV3%^0ueC)4H<3+g&`*-422j3 zggQ9EL7~ay2kMK*gQAH47Ds$Ms9KGWzr__Fp9^kh$H(8|iH|QVP0WGHu!5D`;)zd5 zg-lyy=I0fG0`L|qct*PjG!Rf^0ZJBLAOh3`15X@)yVQ_@evnIxK;fB ziHV2R8zuu{evpC6d}QKbbwS9uFe1rtunK_<`^dz>Dg^N^$dj79kRb)8qSRX~pj89l zAS?nklW%c>_Uz`($wxhjK~mx19ihy%l{P{!vZ1_p-d3@HpLj5!Rsj8Tk?AU0DDQ!aB9 zb1q91OD<~^Yc5+98zVzHLkjaE#whl5h7^`Xj8Pm+4DJjmtSt;FY^f|+LQwONsMX96 zP83%qyC%m=5J!{o7H4TuPJCf$eo3k(%Pr=_g3McNx%nxnImNfw(lS$XQi^Y}mgMK> z6l=0oac1Twrl;zsXQsiJSp}(8ToBQ$g4A?`Fq~PCmtMsSQBho$u3eFvqsdmqq6adA zMGvH%6-1_2fjA%%q@G2uxGX&x zp;MSrnAfnZW`gjd*l?<2UBj}P5vqzEtV#gFLnc$$kW_IJrHTuzN(|W)2s?!_g?$YN z++{o|oGlDdyi5$Kd|7f3706@?R|Ns+LzHl(kf!i09?v4jl9I&ajNH_`k}BTJBE3Wemk%MO5E|rjODH}$KewQ?BsD%K zKRGcczO*PulkpZiR1irT9NqE7Maj2>;aZ?#nN_J(I{rnO>6v+nISLx3dHDq;nYo!& zsVO=NrFliE#UQ4p0>TxVjJMc|ONuh{(vzW)1ok~BL4cC;=Lz8KQp4cF5bMamP|H}u zm<3jVN)!oU7q4NAhnw1?m;%zxf~ph5o6VTQRKu9X24bV)*^F~pP|R>Sv@D1T zE_PsGU}#{tEhX3Cb%S5Bzpkt9hPvVMx`lNUxULGQd|+k}ko&;K;L7OFc-;4}?}gyl z>%nQ4g3~Ujr-K!IS?9OLW2 zMF2R)FW`xB73?vd1u_Fu+=bPE9lA?ikMQ^ z^B7auYMHUCn9W$jJex6vqlO8ZUJ<@oRKgE)K@DRTmVyr!GPNuzoHdNts+HM{DO@0v zQ@CqbW;4!ZL-Fe+aDL$NyTxc-1WLzl;OKn`3cy>8_O}?-s@S1fqX=aAEk@m2jQW~f zMWAT7#adjDlUZ_0GB`9Kz&|L&)g|83*U{ZI-q+LDH6${?HTV{!MgkW#EbzorB*MVJ zPz3U0krap}%)r2)$yy`|VuMocEjEaiw>XPa3lfVGOY)1r3X4I7iUJ4}iG$RF;s{qZ z0B3BFy|N4p48?oE+2AoK8$1w}y)LYFNmy-#)^#o0i(0nVwVW?%IUjJotmSb+@S>LY zmEfFpcRQ1Bn>98 z-4K?YZa2y90~>>e_KK|ac`NfSs@p7NKA=3o^M;+r{=8jzr!p@_#$V7*nBa9)MB|CH z%7Uon@eAWGOPfw~x#8jm%7vGLBQHk7m3&lXkd`l!0OdK>l*E$6Vw6k=3K391e!hSx zW?ev;j+3DTUT|iCA{Lg4pmYsm7CaL{g%}tZ;E9Q;h6!77TEiF**Hy!WEwR@y#>0!@ z9yd_pQf4UOgV~_MP$bC604l~2=74!{J&_DOiRBCx%#jS`jG9b-;54bpQ3NVnZt*82 z7N?q-#Fym9gQK@d0~{*lnJFb1x46MV@emGMMrvkyM#(K6h#-{5=~|JTT2PXipQp); zl-gLqii$zOsGy(#Nm{%N3=CBY*h^Tj@_0~1XbehQ35c}yfr*V*=Z=KzbqU>z61pq0 zuIt%d)U&%RVLyTOhNj+n>6Ox;G^KV!OMku2N*z!Ms}3$M+LYf zfs_cKils;u6sK%Osm1Y`DYrO5G`JSL#a2+7l#`i!izhKTIkmVrz9c_8HLpkoR1WBX z2tANK?tEy=B|b9+l607Eai!)JmlmbQ=jWx~;)yRxO-zYT%P-1JEYV~HCxT*7FhQdI z7JqztYDqlU;qjSyY57$$s7U}-)(#Z?CgA9Qz`@hc-^qW4L-Gc{@O6HLi~I_o7#Ng- zm_IWx2m~{KU|BO9z z{Bnhod@fLl3Bt)msfi`23gGmM)Phq;Ni8nOEJ+1NT4`}=kwRX6i2_)6Y6{38h(5S6 zh_;B1LTb7dTwGTnAit<2F-HMxMrlD#equ^yUb;eJ9@I)`x=70}D$P~UNUAJIEG||^ zOwQ3nGQuxEPa!cSH!}~5DW!SE1v!bu8BpV3CM0F%B^FicmlowHfSYLuat$621f(ah zP3NA-eL+U&f|=J90q+LS8*nidiz@<_4W2iI6eg%m*PEz!LDTMvkbQ&q4PnIzX4CB^ z+Fj7Hzas3=;B!Mrae~@({fYVu^exgJfSTdp04f4iq2OQ!S29J)pmIbCy+z|15#s6> z?CI|pe2di=)cXdTjuw8mIBX#CX;szUHeVU+7$Hsv0D2w!8vpUz`($wxhi84GXuk85C?`?p^VRd3=9m@8B!Qh7;_kM8KW2(L2RZRrd;MI zW=4i|h7{&Sj8QC14DJjmEG-Nvtf`DyU{j&`q10+-2qTKEl1-ESC5WTRc#ADJKP5G% zSd;ML zEnxT@z`(%J&M=)Jl_82Tg&~S5g)xdbl_iC#g<&;RZ4_%NO9w+5V+wN%2V9H|D#n5& z#@@kD!5GC6%%I77i_NphqokyuiaoPPFQcTSAej+r8i)dg7RUjgmw`j81SAH=E)4yQ z$xN9H$xN}f3=Fl5HH;-pU{%F+nQ9q>8IqY8!K`uyO{OYi1?P;^`>8U002qp1Q_f*M2qEiotJTC(SLvauT149GDS1tw#mCvj!0$dNpl_xOY z;1`;beqBuSqL}7&F};godKdZiHW=?o-=DoR`?_7=MZ3U@#(^JL8F&RIh;(}15Lf;P z()xjcg_G;&Ck7S)u3}IWcRDgT^06d?(hMvT;c2LVfq`Kv<8%f@D(YmZVd!OLV5niN zVOk9eJq88_Mur-OERY_Uekct~(6!7Z>`)8(&bA8lRF`T##6joKYmqz`y{BXTH*cl*E!$STJg`76~vgFx+A(D$PkP z0tMPF=H!x!Tb%Ln$vKI|#qsgQASWs)C@3@(34u%zXJBBc5`hIivMpkuAU9-SVEEC% z@Pvc6ll>xx?2MEJE>}1-Z}16T=hM8%r+JxAyMy@-2mf^rxr-pAx7)<#{Rbx%nxjIjP0*d5O8Hn#|C!$<0qGE|LcM4&)?wNXUaiLKhYipkzwW zNEwhJAbp@9;uo0`HY4~VzsF^MuMUc#h6*uK5&7>m{?W8Vqch;SXIH^02}J3$$pCkR1y?{g76k6hzTx*!Kt!{ z8x$?Pj!DHOMTyBJzMx74tgT2Cl;l8x0e0jq4jV`W*%fJla}WbVu{r|-!v|(YM#isf m42%+Y8Du}PF$g#^Ht>956J=EG2)oX!c#&7}D}yK_#5n-lB)tLv literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_qweb_fields.cpython-312.pyc b/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_qweb_fields.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b69cc4cd143165d7a94d596e45a9d5e2102b8988 GIT binary patch literal 34146 zcmX@j%ge>Uz`($wxhkV0fq~&Mhy%l{P{wB!76yjt3@Hpz3@MB$OgW5Ej9{86iU~|J zM=^tGmM9i5%^JlDrrDy{z%+XlJDBE(;sDc}QJg7^Da<)sxm;0Pj36^va=3GOqIhz7 zqjOkvLv$rX(f%@vCh%N36j&y|Rh0Lyda zNajjKN##mMNrU;EIWoDjQL?#mQF6KRQSx9ht{j$A-S2;>KS0ze?ks*aA zN|lKrl{L!;>Te_}Red!hgd3&7#Nf`5!rQ`-!j~$Z6$BAQCRZ~-VkRn1rr7l>dXbVG%7y*@fV3p!63@H)>RO*9OO13bhND)wJ z09Gm8!jK|EK&2sArECjBiW~uzMqrilEet6N1XLP>RVubHq$m+kX#!TM+`^EeLO>-y zSfy$ULy8&!m8M{o>MaZ@8U$3DfmLd@Fr;V^P-zZUsolbmqC-HXMT%|GL#kDZ zURF6IEh3Yvp&WRMwgIcvCrYhtia`rQlwFEp3qzEBib;x53uBZ+ig61=lw&26rfJnN zuJF{P_|%lllKdjw?qSU;U)S}G1bcMXs)Rba{l6-~4loW;H{M=N9+|-i9 zl*E!mkRU`|YKlT)UW!6uPELL~NEBq4LRw~OPD-&3S7Nb3d1_9MLSix0RE0!^wA6B_ zyh2K5T3TvRYFoDG#PKPdgdmk zr)o0ZVks@kDb{4U#Tb8!Ik6z~78}HrTWk7l30?N zp9dDuWWL2xT3k|ei?<-ZII|+YBtJeUB{%05M?qzBer`cxi6-MMZjg=fsl~~O1t52D zq^Fj|=OpH(-x5knOiIm(&&f|t%t?(eNGvK&O$WK0fq}Nz^&Oc09UGpM|3XPC~A z$`Hkv!T>73qnJ~eqF6c@(il^iTR5UvQ&?IUqS#VcTNt9)Q`lMGYu4SoVsbNZCl4M|D$kt$BC>F<|gBhj+S#{C!6qZ`n8pc|-8n#CJ8rBrnY$gVV zBC8sb`w%~Z5S9BN_b#e zJ2`3?dSw|HY8Y#nYM5a)V=#lJfL|4Nab9LYL28L^c53ArMi`ZdX!|Ns9rIc_nhrzcTeR@^e%5Gg6E45>xbxi<0$|KxJ=! zX^FmpenDb#c4B&Jv3`C^e!ebDLN`A-Q8zz1Nw*wccGvSr^Z8yHNAq$ zA~gmEhAI(AhSx*!zYYTfL$M$u1H+F7h8tq4*Tpn1ifOLUy)0(Y!F_{UY=-^{t&38o zm$*%D2rFF|R=X&yc0t|tvasC&{R=@c7oB1+3CDimV9?dOz@vFXShU0ChLG3=A*BoI zE(Z!Pse9ZI7N2f0(PBpNB>M#!8&tMyZ`8i1W_v@#a6{ll5wi;-hBw5er`JuayDY9g zf#m}`gRnSE^JR694;%~vx*HfT@f$vnmYr`l(`!AiSb z%%FC54PzEa2^!7y85wFAve=L$p-imh2fUoDWvyW? z605;(I!g*`4eM-%6xO-SNVZ^C%a+1k!!nyGg#$$`Ll(II0d)$LO5p^RFj>4%E)rG4 z0xSKp_>qL6Or%nk_%P(EVapPL8h}K>{8P(LLVR$i@WAzPkf4t@g#oUQGlj2280L@? zQ5Y*r48}sxHSoFs7AmtDQ}~J2%>mN|qh~Xw2oSBCElUF75*Q0+5{#bBm?B8DiHup& zFmn)eiV(~!bb2;pif|2Q5nGB#4d-lz6w$fNd5kGyvl&yw=W^F_)i7kqB20m?YPf2c zU?C085ArY>1dUo()pBDuDMbRsB<^4aO-a8h&JtKnQY6K|z;KHPTCaecYgKF|y5MFT zqk54H0|Ub^0rdLn7GrG{S7wo3X{KITW@`B@w&D^{(fy0NM7JcPG&dG*uR)+A2X^gd_|z z*;c7a3?U3vr<<8#t5hX|5YJAnEYB}WDYjL*#Q|eiF)1ljNy6+wbC0dkEk>nV47V8V zs@QDwQ!>l!GzE$jL7~H3kY7-w3}SJ_L#xIjP=wrKPR%R3#S#yyfmw=6Q}S=IfP8a{ z4blWI0%g}*>?Qf}px(tTrp%OE9BG+(DPSH?d}2XCYF-Lh4qQQL@)W5vFfbHpfCx zvlP4rOvx-tO)kkSOO1zyVwEC#C5fTL9aLl1F)}bTFx=o1=+ErT?9c7Yo#B0%PosnR z1_xI^TPIsb#SGyq9I~L=t#)GVb#aZ0;uR!;W-Vt(H%Bhq836Ibei|fM57loA2T92D zvasG&9(`mXm*wsY-7gF4T;2uW*>$;1}-TE;3|bU_hy!K~*NG^8LJyfyUJ{_KK4^g#}!3qE@mD z*t!*{MOQF`CYxUsAG}BcH=4oa61ey&G6m%YGX@3*O%`x|EV2g)fbt_G->_oKH$`5c zbP8%}fD=C?<;&wv`QXNCl^Vh14_221GCP0)Ee~9f(Yeg0i;)R%Cu_8rzQAFJ8LOZy z431R^CW>MeQE$LmSet50DexvzEo%(}*2WsVaZ_{T^8`cIE2e^yLl+F;$fTNj$rSX-*39EuD7>k)08B(}v*;BYn;0>`7L6~#0 zgkUTLjkU4DQ^S@ef=~lv&1OvDtzpB~iEd_IaY|acWU~Mq+V1*gM5V zjvzO(6{mu_owrzvOA<>`!L@RcE6Dqxy0^#;!~#`Vw|JnAhzB{M$P-kUaN;aBia;al z;Nh{-oK$e|6#0R2JSaVbOA`MSWPnV)iC&Jt>QWIgPzMdA_PW8% zf1O+YBDeen1>-B+CO1SSr$3dn!ufy%8 zu;h%e`7twNRzzQtwYVWJIf3(ru;_HliI&rCC)zHMxGb!7N!WZvW~a*&0kJ6+*TvN@ zimR_+xh$@GRY32CfY@}-$(%O?#I6e{UlvflgQSG>vbfPz0pkyxtipU9&L4Ofcm=QX z$X?`;osqo2{tA!r4SvB6PRs%gUQNZoswvR$2sCNKs1(K;Mr>nRSc@YjShhj5n9~`8 z88n&wK&{Tik`mp5oW$hRjQpIG)S@b06s{&SxM7D#XPPY7l0`9S{0tH6a#-pSWII%G zS0hNuDnYRis>T`^pzWp${7MU)mU}MrT<*KjcZ2?A6{jm4&Pd^i98w?`fh&eP3=H70 z#}ZiJF?2H5F!ZuAFu?nnpwI+Wg>V%R2BKe{!c@h@z);In!-%!IMyeDTK?O0Ek-{3L z6yzQ}E_0B^_i)<9hKR=+#$X0bcE4N9prI{Luj>{!QUKm!hc#Pa{TFc4;TAhIdug&1 zse%d#v3PhZwm3euEHNiOzbGZO=oTwzc&h?5%2k|NR056pTU-dmMX8_yL?0ASpx{UC|(rM?qI#aAp~vZsV%yCa2O!-!Sei)7dRv#`3*UpfYJyE ze+Km{Kx5QM>4XtAoun|PGgdJ$fbtHLAGpt<$pi^O2~Zy=9yazFpPZPSkqR0NEY@U# zWEXH4fyO;yA(ROUA$eE`fo1}*=+VqP%8pWC=`K;oT4~ToPr{-2;|0FywLH<0t zfTu+`v8x76mcUhVfhR>k;{j~9SlvL=R#m*vISxJW$Y~W}MeY8ZOCVdLpFEUQ7;hXFj#z?cQn4_1R9YQQrhwQM!aSV#Hbjl~MaVqQju z68Ok}4QS?`0XAL_o@rpMVXt9LVFZou*Dyn7T8gr2*s?$kX@rGfRtj?&Ls3i(Besym zHr57hPO{X3#?0VjUtpua1T1W8Icqp-IKfRy?ATY7a{5)N7`w28j2p;+20S#KfP2>g_0!5(Yd5a5F z5@#lrmZTQnVuuc~gPUEq*wa%>K$5puK3_}a@YEUsH08Zn2Aj2U(n*l19?nBD%Cjz2VQfGu*6wqCfwjt|) z`U$hk0znO6Xpe(C_fP!7n_a@)Ezo4O7PntQW)#FA5la;9(FD?cn*q$snh4UDn{D ztiguN3$g~6WgQMkU6l2iz;#1HZbsEb39SjNH(dQM1V>zQjo27-Aub1Izyp4f4jyoU zlnl?a3=9mQat~AaOrqU5FEzwX+`;_%8W?UMY=@Q%;M@RWgKY;D)YC!p03i2(r4U37Gq#Q^Ebn1!A;RQf z?ZjY)qHa(RfVrp_ly`VQ83mFa^FY&NB}JJ9DFI(FEE7s#2QbOZ?j zPO#rWQ{Pqm5TC;ZHh_E#YJxN{JOB;ss9xk(U66iV&FZ3>)nzrC>uOFH)toM?xm@OV zy};oLjtxzoBG9x-Q8uWS$^lu+3dsyS@hPdr$wisqImDtokTj@2QZxy~0wrUxXNsnP zxcMNW0Ax8R{Gjz1DEor*@MMq#s8{r(h2aK|bc5>+VfhB18~kz&9uHVK+9MkyKQjrj zihgEhVB`M)VtvwJWEK6u#=yo2k_1(KZj4~rFHDTAZj4}egH1-M)$^L_OUTgjNnRGuw+up zLVgmfWi0`vaFD+lYFM#VW;HC>MmnHX3u6i+tnrITteQ-IMYf>y%65wr+zAF1(MA2B zIGzAXAk3M0CAZj%Qo$|bTf8M1`K85)c`3#5#i<1=*}%msB$a?taStAoLl+7WbF)ZxCg(oA!h@P^{c($=4u83k-V zFfel3g432?(R`3|(NgR}kQj(K2yzIhKLJXyil7v$3QDmmNGX@{g_v0c z(utB@L3JglsQC=4C@AeY;OH~3AQi@(;64LaFoP!REl%IWyvmS#|Gd;HG1N4ko0wN= zln)X|O6DNd;N@$1sn|Oc3owQ;i0Di(V;inO3~Lmr!kf{cQD(Uswk*(+El`jl;TqNy zCQu!PeGIyWHH8^0%Nop}$>MiQ0NS^VPbx~xOUcYj|0N8YP=tA0H#4P53_}pylF(#> zw56AUQUbWv22CUufofxL;it&~DX$wr@=YM38AP;zh*nVA=YUxPY1V?g11Y{?9dD4K zRU)9^21gE3tM)P|(S;*gwV4Yp&%Hn6ULg!M1?_qi%@1}+pAMX0 zXM@rrPjWsuQ9~N2Y)M7=<;AJD*itJpi%W`cv6dHQmZWNOK@v2$nF?=!++y_wSqV<} zx0rp6{EI+o{T4SYamQz-6oIlpF=*8dG<_?eG*N^RDIDHNxeH3*phB{N;emk2bdHG} zGsNdh&y-#ee_7J>qJUWk>m6Q!3F6bGCrZzVxh$x4nOD1m=?0%re@17 zBqo=j_X0p`GC;z}y#T0E>~#$&9g;k7MX0WkD1m27Y%Tm6cp(C>Z$LE)vtQ8)&=`a` zEb~D<16wQ#t1v)q+#+x?0Oh}1ELp|*dAC?oN^=W}SF%I07%0Pl^HC9ModKySK;05Z zPC_2~5Q2siQZ?}jo`xD2K!YFYGfFNB=x<=#!F9m>MA&745VUIIj=u5ws+Cnc)GzBh zb+}#-(!R)}gH#_Nm#3iG3dH{mN#_KG{g-V!vd|12kEVnf(0(7+%HfdgPIlKmMC-~fXZ@> zg&HetFDhAHS8}+h|vY-P5 zAVaYiCIirVWpM$m;TA$|xTb)__>mf|AVnx82q+VQqW$w0CiF=+%3G@w7>o2^?NxXg z!HBiR3LY-UR?4I>gNL0pY8bE%c!M(uwoC-Fw}u&cpgx5ewA>$*L~B3;*VxTt17$jF zOI)$rk8MyL+Zqg5)2V{7Sd@_gvA7hwsW8>GY$f8bR#6S!WuLX|C7{Vfu;LoFEYKoH zFdISCu&-f4C`W*H6+w3&fR=1j7Nq{-02QR5QK*%Sx7Z-NdR8*sVoS>} z%1taOItp4dDuZsmE@;#rv<5Ucu|!i0(hJ%TDu&>dT2T#%TL&V*Ydbi>(*>Z(1JKr^ z)FQ~J6==y$5oq$I$RDHAMmFO*|oOH0yZt;N4fZBG82U1-?OuEGaG73`Pg2p}|^(~l0u5|f9 zQ)aka6wp}_wjt_(_zAVk0)fai?p1EB8yb2msxE3+fofZo zi#)0i_(ee@ax=0n@@rn_*SpBCw?XR?zs(H^nfV+uIW8z#UX-x9F5!An!u3GfiL47z zi5HSHFH2-iV7;MXG=X(O-bDe`8{#q(cpeCfPM4S{F+=O3pz3u&{fmP78(6k;Y~>D3dfuZ!zl6xUl(wjt}HzT;(arwJ@~ ztB@D-@>|`dn5OC1NVyt?k89-geG3dD!5?ae%YY#vV745o(ColAa5I7eMPBU{F6%v3daU3dzr?xK#}WnTMByrD-dPPm-+IO%cO zIkbc64!`(yeuazt3JXM6FsuRrG@vwC(kgiJes&+Kppp)rMFG zGI!9lyf{G75|WvlT6751?-538Zh_JR_9oXXW|}m)7Q!m$TDBSnY?&0A(Lu=*oDmTO zcJn3f1v&#*ggb-HT2*O zE`+*T?h<%ItA?#a2_^$;v=zyhz#CRs@a7au6$3*SXub%+1+!}41sZ6-Yf&o!6RJE!Sv71m zoHZO+nt@yd`~q4n3^oBlpoRv#5y@4@=N4CHF?f|=UUKR!=Hil~B2fOm1umRG znu^YVoG%E~5)TrBxV!=69K_<{vmh>L)D653CpWPK+?WI@FS-WuHDq-Qcq|j^&=sWqtus^|(4t;vi9EEfd~Hi+$z zIuL#$?Xo~<2kQg)F#lCdg*Mk!;1t(sxNV)f|d7WtDp;U$rmInFH59MV8v)*dS5i~KH+*HD(ymk=>-Gt%LZka<;y4Vz^yU7 zC}Frk^|FM;1l9){x}a7ksIh$msR61D7FEB3M$}0ZJp0mkS((#q%Fz`TKj-y zx#DaF(5M2o_UUYfxy-d}h^h@+#a6>o178|k%U;8bwc-Jdjv~r1Fbk#PaR*mCpgsav z4nbroAlNWg7BKQ^ z`KiSUdHE#@xrrso844vCsi5;fauZ7wREvv1vr6DPqbkuYF*7GM1vHHfJDdfi6g&a| z(x8wCIp0MgKMiaKcybJ6KKSewP)`Ib3|hmZUaSDBB&zcBQWZ2*i#0)JhK4wYtYo~! zky?=)pP84IuPIARR|?#Bx(BKTm%;TOgn%sl0WAlr5`tHLpr8d0*Smn~z8di6)Cbs?CP6xRAJ`c9gh=n^ePCkY z%w@cxsJvWmq1*)pgAI%ult9zq7YrRQ$T@ZR-w~9&E~s=-P-%hb3jNE1Rvk_sxEO?` zrt3}AyDp@1QAp*2s?}v7>q|npJ4*If?5wzM?|;$W|GItfMf>0jArY7DBQFW%UWiS+ z9-DeGHuZXJ*2UPY>#?~PV{<#$Z*mKLVB+Fcz9S_E+Pb=e{j!w71ok^(QqwagW=vpy zAS!cRRP~~$>Vl-pqMFx5O)iR>YzV$AYB_=Fix7i=Sbu$I{dIngi~JfZgf8>zT;S08 z@kO0MKI6IF7vVm@Zc=w`)SgtY?>K$g}~(jH^NI*)?&=n`1%3Yo+N z9aZAO5Ua_+5W~d4P|H@!j+i;FVJ`tKc>vdI@UAR(2`Co9Vu;t}ybvEN%7ML5F7(uI;I1!;H>6Z^VV@x3}zceoeT#@B~ z&g)XB;#0`XQ-G^f(Bwc=NVoVwlbR_=OOnAovj?Cg^bkaVntw$vKz$(Sk|u0pcz-~( z6=U`-#74L{h%n+RHK7sKDzsL;6?y4K&5|cPSa59L> zedS@`m%Jq@w~+G#GozIDX9h-o9nca#9dLTbo`*mayG0-(A2|=Hf=Vz=Pzk01AHw^{ z#Ko!u%|l$Q5HrC#QSuNdn}cE=JY`PWii;Fh==LB^_-YCck{0=~-D2?w@%2G3+dyRz zO4$ZdgfeCa&t^r?bJ39YoUudpoPkE&P$wK~n6YIj#5%B|x*Gg@hp;a0D@w+`tglGD zh7sFJsTBA+vSKk#(26b41QRF%kTA&YpjK@Se6cooZ5KS_B9s;h60}9Qh7H@md=XO$ z=$shP32pG*L&^*#ppgf#@hS{O9E=R0?o}RpwX4G)S?nly_TGxQ<|Gs1e!Fv z#S7O0npGpTA`-ke12R&ARD>W8lJJAlC(-~(J1A#@<|=-G7r0DhzbK%zz-)!phVlb! zmj&FBC)+@)AVs96`%Uy)V0BSMufz2Qzes;wSKSR^iR;3;mxOgUq+K`jxoGBd!8iMg zS44i63GWYl43cu!C5$df7;PxKZti>0-1mZC z&K2|A4{Qu(*4IrvE}434WIT~G!S#Za&P5Sj@cx`1U&I+?R6jAWin=j=;9_uPbYq;s zdO^Vd`@P}hfEor%$TuPdY}gSbcS>W@CFBPDnccS zq-$8PO^DSnV_UZgt56sjYFM!6+!lr!tc#{fKoJGD8ruZe8h8$Lfo}sr*p z+X64rO@=q77#J8p3r9hH#?PP=LA)6l89)nMn?lc@+~<1LPoe8}{(Cetk@ zJ%d}U$r+hBDaD|cCv=+X7N<>mYF=tZL6KdRA~=o0`!RYp;4WCPogQ4tB2cOYwaH$9 z&Z_&sz$os^cvHoDhUph(1__zzwG(R>gl>quE^dE8-2SGD_fPPa^(IASMoq>d(9p&$ zMlMbEqB2m0%LX}m2((hOBsDMP7EfkLY7y9ZMX7m3pc>~EyDQ{yzgsL>`I&i|&?8n* ztMFTp5!JksVvvVH^)_Tr7w<-B8iKu3~Xf#bQtB{@9(d7gQ{+sCa*72KoF810$y|;{$$S z(7``5#4qzJUf@s!SIgk_P}sW{jEoEnMIfRHOoFAwh-`A1}I%Bp9d0z|o)Y&SHIDHNK0GnL! zfg^U&aj~)5n);xo#x^ATP<=9q-Bgz+0;~m>9A+|N!h7rbE)N-hwL7_O{kt6{~qxC+*s zt7WfYOMxuG!e$P9ST2PF)LH?pL(dX~*nv#KOe;i%_S$dDd2aDIWsri z?G|%!QF0X*=rmJ(a9+B_sQ(g_1#U6wf)AAiZ_ZCFDM?Ju03EstUc!`E3>jhr?H+jv zDz?FGp_icCqbYEU1$5RNcx!eMXo18n&eEbB$l1%cSPBwLGH!7dmn0UI6qjd~WE6qs zN^kL`q=Krm_`=fEqRLzBnZ+rY>6s;vRUDwryG4*y|KO@A9%Nck>Md6Akm)VHoczQT z$N|qFnOpo|eo<;}en~1wKojeb;4S9TqMTb?Afq71FyG=#D@sfUd9e5vE5sRWAlb~6 zTg>^HDYsZMOHy--aSsXdgG(JmPjL&VptpyN2XYJb+jQE@V7<&OcY#~&hOop9KGFW1 z&YT&hm-!U0^Qm6sQ(cgHnNO#K`H86H^tg#}3!E>DYIJbj;1=z-@3gt&<^bt$(JRJIy`TP$XyrFz9^!7Swy$P^@gb2jKYaA*G1JYimI<*zAUP< zBJiT9euo=$sn!*K`5O}I6IgGE$xL9rAt67J^#dD&q}+VYnVbvMS6FTcTxkQIce)`a zJw0<`<^q-lnHv}v=3Evt1}T@tR0ln1)^(!&bz#km!kTN8S0u02xGZek;c`P*dkB+`4?w2}$z0@?xz4S0ky~kj)pGlV_8|WVi$l(~T~K^kSo;ExHh8nL@bPg*B`x@a6EP47F?}@S+LZJQ~vEKYI;3wl%G=Y6IN$g|B7>TLmUk;PYgRgl4zc zur0=bnGcKeWTq4b5JZGBXtv3ap_s9p2{hZo$N<{b1fM?wot+7GhYCZHBqKu!=%8mX zKT97>p%9??BZRq;43!MD2%cppv*q3B*!nWMH_(3O>v17E^vP=&0_3TWpCrCB>-);JvQ5 zSU_iA-(rWfor-S>g9h9nocN;D;{4L0&|0pfxk%9wVG73?7_ z<8+#g;M281EkHex0}$1~MNsi84laIg2#8!4P`oIhcwIpKqJa7u7SJlW4aJu=tgmZ0 zT-0#5Ea2F|`hZ^qv|w(A*=2sE4wgH@qSMVLn$0nqZ#mQQvam{r^DTa%3B@y#Cs*AN z5Sh+1k!MEm0_Cd$Y9Ck`L{z_UFbIhB*L2og=hwf;uYZF_u;07Wdj`j49>oO~AD9^h z92svwcd96_uKxrU=wSH>+KqKXSo{MEC#S?6LD2~*GhD6+DlQ0oA|W}SZ6@1{!r7b? zSZ@f3PUo7)HHGJffZ%ktiEI-Jr*Pg8mxZ2{#<-qsCEIF_%i@OLxfz6%t_vz&5>)*C zg@-{v@)H9Sr^Fo|q3b*{7kOkZ$lB~kzQW^lQ&{{1D-);0uVT<<_QSk9t{e=9B^@PQ zY?zN2ak_Fa9I;__Wo19g$n46&aFi8Ha>%=CF(1`rbk$puXg1`nn=L5I=zOm z1k_Lfr+!4=ww4KTY5}%#7jfVYw&hthOxQ|TSiXhPwahil_?n-{$NFHi1y&w_2QNTv zIj|oPL=EWF1}Ov|#zN$4L|K@HWkFdD3%*hg<_l1nQvw=u0UNKv04f%cR?dopg;9tU zrW(c+<~1y^*=|r-g;c(9Owqygt2PS?_i7x^S!qU@qChE*6zM|uLMaZqg z`H6@q=!E+@M)R#^S}jOkp1m;pvb51<5#tV5(B?|7POl!HFMJIAg8f;YS=~9HLsxnG zxjMNf7|&px&oh(f3Ww?)e$ngv@)!B#7cej9S;(`P?=rvs1rGfmUj&gdCTQ^Cg0%IH z;1ebteph$`5Lpux$xV*3PDTuej1-;4m=B9GI*T#;Y4W3Q+60~P2Hv|}1V6aq7E@6w zXmljEATuWwQu=d(LKHlH0-C!n0+pFXpdczjJ0bwot^)VpmxBTcbWkPeurXFv4$uLM zN}y>3_(=i6vJ;Fz=LTJn^SmtV)!+j?yyYX46ssn9h~fi?^~pkk z`4ilJWCE94HDn!fffxe7HUJ4LF|aL0g~`>jmVjag;iq8~Ee0i|IUoXb z7Dmw$5DWJS7(%c}LG+2(nHU&~K?fUxw;qBvj)0GHc_1JTu2RD;3#eQdFuW*Wcv-;s zx`5?H0n5t*)*Y-*_$fFILz4qN*MLuY0c`^<0);=M9}CVIX!#)odkvdv<~rBY>K`imY}!=;m@EQz0*PS4#-mgpjc->oQI07TM91_ zkVXQLM{2;s%9_lG32<;mgw==Of*rK09CEx8Xr&X@L2)5?h`@*XWkCS~TK$J}U&8^gf6lxk)|MEt^}z;na2W^li(x{I`;}ZjfXUURl|Th8C?QW2Tt@@cdjvl zw#;Lz6_M&f_(%$@j>1;I!7>f3Z3~)wOZ>vZz@Xp^xxB7e0W=Gw0A5C)SE2wKY6Oeu z78j%@XQpMQrYPiO=A|km6{RL-7b|Ea73nAx=qRLQmgy+y>FH^L=NdBe6pHdo(=&1^ z6;caJGs_ZlQu9g_Kr5k26LVl@>p^BVLW?2mGoh!Ufp6$b%d99Z0MBL=ffl%cj`u47 zUGfH6r3t$B4|I!Pu2H^~LU~4No+WR|2B7bGU9f*q~^x+JSuK?CFo zC>wP5RzAq}TE+P}sX3KepjD&@ZJG*+MX6w;K&BQHq^2n3mqJ4{FJA$4@<3@(ajFj3 zVQHm#DT$y_)Wn>eN`<1-oJx>0^Yaw)Qp-W%T?{rTDHSA|37O~tyF?>ZFI`U|GY@ne za%ze~N-5}87X{FAOacfHN_Q_7NzQfjm$4C zDJX>~t`dt@h$)FFib;#ripfK;iv&PLKB!r*$##o1zPu>0pePXBYc4KLDiQ^;1i%;S zWmbXi#!LaNA}9hK?5N2EZcW@`gII#Rbf5^dei2LomK;p?HIX2Xx3hdnfx90fhx(mjyH~b7)@Y(7(u`f0@JZGdnYn z@dpNGR%37#StVSckYT8hVWf~@tdL=%kYTEjVOG_hn37TiN^yxrC7H=NsS1h3nJK9X ziKQu-`3m4XQCON^lB$rLm{*oqtdNqTkdgx`$`#Tw(~}dyE5||1(jw66`g~AA1g-B; z$Vg30Ni9;y01t&KWE3gn=YWc~g3=OD&QXBg387GumY-juP@1DqmYI^8k5V&&CcHp3 z-e=Gz0pz8$*hauWS3B1*Ak|pRRUrz_@Inbu66L2Mmr$T1l@pUoQj0)|N+BTu6#EGY zpk@28>HV$4QXAe2Xcwpo0B!SEN*eb>$SS%?P7G=DRS&@-Z;f zG9yNsYnYMStUUrOpsOW783V}$ASSXqD;YJJs&*&@r6!ja6=#;Eg4%=?B}IwJCB=|R z3)HVtNJxNI%Lxez8fBS@3b4CM<3Z<|r&g3`g4;>p1OY0Kixo0Km3IzkxpP7SNTeXO zC?P>l!4+aQC_R8$ikZcrTbe<dvoD~QT3)(B4JfUH z?ef!P0i6TL04@W-S^Sm&hSONUrG8NgsA6D;npeaJN>QMZdr&VMvOGEwRIPxBdQg(` z1uw1oz{9}G-R|4yJ3;*li_{HvzV@1?nj0K^{k)yLSH!edn6I~4X>(c3;tGf5Z9$0+ z);k;$Gej4#UFA^!z|0^d`GAEBqWLO|6u2TlnQDL+vktH!J5cPP;S@&DlJp{>8b)lr zY{Wz*BSW4~4c19x!~{hdLlGZRa$x`sq{9ksMut2c9Qxs_3$f@&8ivo~K{Xpz*ntu& zwsnc1!$h(932AXY)>}ehnE*zErYXVaFWzEGDgqZMMW7Wa;N`fQ?BKO};6!qZH$K48 z#l_Vn-pR+`*}Di7)wj6geLaJnAtJX}N)j`3z{yCH=@w%uILV;25^_LE1Vr?Lk_hOI z^#+C;>>TZ-jinPYY*qEmD)a?0P~;O$79AT~n~NnHCPr!2Dg z7d8e?K9H&_91;)MIoivb%Am%9(wX6Uvz2C-#f+|U7=K`9;NSx%CQU~0;HIWi5qQWP zymcBp$KVZe=62BR1A9(>dOB!BnK?)Z)JiG>U2$II3F3kZv|B8omKu1CB4n8*bAYE0 zcuX5S({YQVJhdphDz!8nvgU;cG=-`MnKUgfvI3a`N*$0fN6>n0@Xobc{9tA9+0bI} zI%M$9xm#RdsgnHsoZ=$zmIlyzaL9>5pdp4L&}CCl{a{6UxtYbukV8&D%LIzNK-m~{ zBePFFXv-XANCQ0k%Ila^3@*7KM`4PB%G)9k0qWm_&-w+QzgPr1Hw}C$ND*io6L^;m zc$+{GXxU*AXp|E&BnKMSC<2WdfZK(TYmGq5dWs4_-Ue+52PYM9Ed)+XMWB>{Hi~kK z1GZML2z0v#s5CCV!^pt!ftit!@goN-Bg-)7(gGdLfE*!*`H zWbZS`++~ou%OLrfLHId?`eg?7`wV9H8B8uRnA~O1xzAwnKt}!ogX9BFsSfe$oKhD# zrDj-M=2U55`@)vO$mq)05q6zd@glF{7X~o*O9Zn#qZ?y~+jSm=i#!Tn7(l!)E{vRv z4vZaX*ZGt#@+o~`0P(&^a535<)NwJ|evy)46q&#VIqT&MgAAj{7dw8&EF^s(-WL^R zM(qwW$h}%$7?c^czxXiPGU|4eUFQd_f%(E<%c%Rsfr*__6`_iqQT2<60HY4VbOA=4 zFKSARN(ePdj7nd;7$X@O4G^vZ@xD|raWmQ?jOS*w{URgCD1#6YWR&@$!OW;Jq3pW2 z_C;~+FAU6#8easM8C4K!m>E?*@n|p_e+*${5EQu}qIq3J|DuTgWf8;60!9tI5BUT? vFfp=vGCpTwZ&Yno|IE(J&)vZNiHC(z^%EaIqwr@nZbs?PGCYhX;LHgCjP-=U literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_ui_view.cpython-312.pyc b/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/ir_ui_view.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77a1378768660e82d44bd9c227da18ed00279c6c GIT binary patch literal 28322 zcmX@j%ge>Uz`($wxhlgyl!4(fhy%l{P{!v23=9m@8B!Qh7;_k+AT(nXBbd(=#gxL3 z!j!|D%M!(s%NoVX2$E;cVasKYV$bD>;>hKU;slGaXda=ip`{4|+vv8I+3rKa9u$tcOq(PX~GoLG=~i!C=lB{iq`7Gu07 z<1Mb#ih`ol;^NHwJWa-1{9%bXnJI}SnfZCHMMe2VnvAyueEq{5oqSy5oq`gK2FmQ)s`{t|-m5Jpvr!Nf|667!04z$WTurc^<6=H-{9>Sm@SgIo#2 zQ1>%@_G1RcKq><$)T5YE7^9d|m|7U3SW;QDcwmYVbP96|!)houiXDd<79=$sIMlEr zso}(-h7Cy#R|GTNtCnaHthQQY(%_jVO{D2^?w^ zQp8#q;b}$^hbp-gaU@kzI8;d>*(Z%djU6K>cm1U-uCo@4a4v1oBU|;~{!Otv=p!`?E=)%y? z)X$vEoXL>P6f4NU5W~d4P|H-yT*FiXQV+&ujKz#S{54E9%#)dVgjpDB89^#i7;6~I z7>cZG7*iM}85kI{K<0wgBM4ad*RrHAWx+~cgfv49iwi?PYcf+h$aXFUhFaDd))eM! za|VWD#vaZZ)`?6#JS+^!Otq}A5))*b4Fdy14PzF_FGyyAm?mIVZ8WIJH^A(GdTlfNKtBTep#wQMru*2rXCku-l`z6C@~i)0Id`f34|;{ZxJ{? zKspG=2VB=JR&Ze5VpO=rl^+iZ;l!kz)LZkrZw*X5V5gyTuN+ zF17d;V{$PY0|NsjE&WQ>&&bbB)z3&R%1cbqFD^>fPb$jHOV2MY(Kpa9NKDR7OiwM= z&riwE*M&*w<|ilW<|ilVmZv6x9iCsLkHm!3>H3*P@uivZpv9(Ulud$aKE9Xx?E$S z#>Vo?+94auHz*!ZJWzAlDR`CRhVqNrA(xdxJG>^8U*wU$!7bWv*J*b_O8YXm&IYzi z+-5ffq%KJ7ToBN`!7q7%L-OZmUIwus#-E?q7<57zi^Uii7}^9J&Do~2I-0W`WaV~eBoO|r0&eluFlIqpUZBzfhEo_}rA9D=CX-*4vcA4nv;(Yd0}gWq zMOy_WM474-yOQx1Yehj~NybX1A}Iz2hFdI&Madb(pt4p$p$OFIyCt4lQBstcToRv} zo0OW8lA02qmYJH9Qe33~j|&_sj6mTp1P=cP{KEZJomCg4>@V{>T;Oo{401H(UbF#u zF(a`UoNzUi@>AoBONvU9OG=AUl{90cK^Y}6Gp|^~Au~ls0bROCnSp_!NEPHrWdDl7 ze1mLSag`i~Z&BpUK*pf?HR3XVAqymmhHDtHRfUK|2C6J;nQ*9Lf+fXT<`iZeYT%U|sMAo(Qp1AX9c2tf{Mcn` zSU_&beFe=~#h)iA<3DYa}hY>hW-n6f~jhNiZJ z8zz9mk8H4TK&NZjvAY^uw*hNBu)|C&cB)~>;)l5dLBkp?MMgF3S%L_07z@9yH5@SW zvxH$f5OfW54O=F>xM5_-6Ru$=MqP<0%nW>Cp9LxvVG5x%%r!;AH4Isx2!e{ks2cVf z=GD+N&d5*+hRO^jpfU}tq(lZxF)%QsF{v;Vc`-7S$iqZR6k)6sPQ30?f~iB$HH=xH z5(FUtX2HTfOC8KbAz*T_^ab--6Jt3;1#=`rIin_*UllJ(xsBk0%ib!!%p$$Q^3)_f zFjub#lnkqQQ3R{FU?yay++qP09h!_q1`G@gRdSwrWuTt30$4M&4Vac+q@Y@CrJ!1@ zDRPTBHLt7)6v($Y(~9zQ<3SzrTkOzs{}x+PQGR)G>MiEXypmh&pfVOzV(Niv4<1lc zG9D^)i?zHcvn2HvM{;6L4!GsQ3F}~|-cpQD&M&BpPcAJk$v}#+3O*G5*~<1P4}7Tvp{u)=mNPbA_h-{rDwR#_nqmxLiM7I!F3s{i!xSMgspFgNL&}O zx+r3`!|Z_RRT0k*%nTwn9|Rc$6n}gXV-S>{<9UH!?GpndXFcN`A;l$%7gSshq#n;b zn0p~4@}gVRb+^QeZiyF?Q?Dl%T}&>zoLq7}x$0ta)#c=x%SyGEh3YQw)O}zE>HbyB z$H2gF(9qe^RhQwYuA`(o8#7A70~Foh%J?3vG6dDXC|Q;PK5D}V>al@Tqsb$x#Ttez zP_2$8U&c_xSjkiZO15B`ERd~W7J^7&h7|?1gjBMmux5esJVG;=g`*OJ7t}EGQ`pw9 z!-^kJA32K`tR01@fxCv00ee+Z!<5JZQ+)vfvMi8pbRUuwf`f4a*u1 zSP@^#TEmE~ny6uohlfiIGgg1W`{3ZX1eJ0qwlFZ1z#9eFVrdO0EEHWBV$~QJYT0U7 zvDs4s>V1Gs&VpAxU@n-b!DtvTGW2M$fI?ahtN?|mVZb*2I-4}V6&WlrHu;Y;D4!&b{)!;Y;otYN@g4MNidIF*4~%4n`k z5dcL|mNuF&XzT>u1ghnzVaU?OqJkqu5SC&X87hS|h5c?ZWu~~@Vgc2SMWD`9l{!in zLLIqLudW#z?U0#bt6p8J9(#+uD77FbF*#L}=@tuU@c0%-L4I*2XpCVc<1IEwA61j_ z7IR5r`Y$F0ja!VGkXnibR8imJOsyzM%>$2Iv)$s#%*#kE$}EWoRn2*cxv52JpxTo; zJGJr_3uu`777M77Dgw3YZn1-UWbr9UA)4a1xKi_qON&zD^Yc={^>a}Ks0#xsk8ZKM z=A`DP=9S!HOUp0HO)R;^mRL}bnwL@pYTOhBfXrvjEJ@8RE(!#(SwMB>EuPGh)S~2! z%$$^>)Vy0Ppep$mM@njH0f<%P1u{Gwq?#wbpeVJZq%t1lmRoG41u2Ooskg-A!8IRp zki}=@=Vuogg7mN@7o{eaq!w8-FfeFxf@|XDVy4AKZsiBU5>NO=`fEFDXM|nmSLtB6BOp4RcOvhM^b0zn*L7kp>cm`# zjlUk7d@(lpLQ2Nv*v!j1SrkI@Ha z1~H2d91PO(^VMgn-%wOtF1c88h0}Vsm2MkM*7{r!u>@DWsux967o=Pk(Y_(4G(Tf@ z#tNqOY%AGTl&s;oAZ&U=MCyi!{6}7P0j>^~4+0FFy!{~mxLg-8xF}+9S;XiHhw%*= zh4~&cJr=}Vlrg$4V|h`=a)-)g8T$(yk~cVbu5;*J^&7GE?o!}|n+rp% zBVrgAanyY22VZheMOJPZ2tzk=JPG%leqRVktrcS^-*EpR2x z*eXs?;iwBPmcW^x(e@=MGC)H`IhnbcB}LJo9L-h)^4l#gPzM3j;?7Hl!PT7 z2iHx0$s0UEPxyuV>pSabR9)uR>RqLTRz?#oIp z7kK1vD5)*iUZ}l+Z3puO+kgxDffw|GE<{By(7vn`bAdwh#uo*QFPONW zkh~BQbs;A0szCZjP6nkwMo3lyjqbqm1E|FV&Pq>M7#P~Q+J&Yw)G*^8A!G!p0O^65 z0i{#mZAGvOWLw}WYFN@45w$8PnSyg14fe8bLKSB#X1wFk>Bf z0T1WYvZXNBvX_90da%YC)-3Q$IG6(`U~RBsz7k%TU=4c>YZV&<15B=o5y=!b5=>!3 zHKm3v3)F>xSp%h!ZBAjSLD$28wQURiq&ptl|ayL zMk4G6r#vin^VINU!3Tm6jz@%MtQT}Pk++twhC2(?nnEZ8vub!V8Q^~5ui+zLo&vg1|n!&Yr|aCHc!F{N;|aKPdn=8nlsJ#s7zwSu*vn8uPWvp|hH zaA+WiEKLL(#sUo-)(ECErf{s`MpTY9f;AkVbPci<kOU%hpNK7utECWw3f@-Kz(9D-YW*T_L666B7ahZ8|jms=nD9wX87BrCxnz#fR zppctblAMtWnt?@3zUJqpDr7>ZMN5l{K=Yz7+cl9UDBbdl6f*OQOA_;vQ*{);Edj8x zh(#^M;C2JtkqHR}MfoYE$t8LvsksH9SyMf59h{O{oLrO%o<0S69W>hmnimDNSP*kZ zdY}qEJ|zh$48herl7m7rQWbJjOEU6P6iO1aQ;QXn6N|u2m!j0f6mW9|JV2qnC(ReAcU|?YIt1?iB2b{V>K~a7|YEelg$YWsj3aUj4nZ*jA znO@kiW0ja2*b4}m;*$KL)RbGSsd@3C!6-8`peoUrfq~&OC_Q^KFfvSMs9}iZgk)LJ zf`J;wX^hhu85w%GSr{rA)-snfu4MEp(gC%Im~S!Z8Gwga!5zP1kXZ`Q2FEQ_o9Z+%QZd+#DBcEX0}bq}~0GV~pKvlmKp0X)@koP01`Osnis`C7hg*nw%XENtp3PnduoN#kT}e1xs^M zZ%IOgATfxdx(JktiY!6>UC?Y?5vW)L4Nd14r51s@$B>|4E>11E#S5Cl183ZvoYa(C z+-W(b#ToJ7V(pd`NDg~=6`6w!PXITai&IOWlZ4>#zQvrFl5&eRIWajS^%fVTw;o@V zSgt7y?uOsuhGa2t8F-5ytx&wh36(9$zr~9rSCW5=3*u2wQF@C5!Y;|bC6o$UeHRbQ zZt=Or>9;sQNiRM%uk02phy_V@V?aZ?N1Ed&$`Q29MAKQHATG8W%-1R>)rzwd~-!AuMxUSmmOy%7WO7!p0pO zH)Q=Ua7f+Z7oWj(T|(!ggw7Ry-8(`u7i9G}XkC=Gxh!ORfyWjk&2e2q>!O6#6@G1~ zw8lkQtII;x7kI31@Qe4?b=85zO?Plyly$f)&a3MPnP7QcSo5N= z<_?hqE*FF~FAIB~(7h-eagjITLTc7Up8C(M%-UQRIMhFIFlZQESNFN7?sJ1jdhA80#Y*Y>=q?Ribx`=WsQ1eOb8>NkY-t_vGo6gJvm zvP0yuu-yTb%ffCqEIcoW=x<=TBx3rJl|jdc@dG=9elX()9tI^x#tR&BAGjDe`T99K zIVY%J;gI^s#ULs7g_T*9>!F0~1eOoX47`F9G_DJ&Toh8dqMC3aDf>cB<;A3`%R%Ba=$2|Oh6hVJq;>Q zK$G1K3}4t71VsDmI_qYntcbkAZ+?Np9O4C#@vwF=$bTUIX9q?GhIUY^gAwbR3?^)% zpl(3j54COb=359NtJk5`&M{ z!PSEXHNZx9Fr+c2Ftu*5I-6sue_Z2}JIJX4i6N^&81LMWgRVCf9{EE(&X` z5Z%CfUD)iRcMPO8*etKasL2i<^e;*TIg6zvF*64;A;6rInsC1b5&-6CNtQP zMQcIrigh5HKq)c-+JY@w19Gh-BDJHr_5w&lEdv9nVfulCfk&|4veR+~>wM0coR_#2 zZwO1=;1=k&>a?06I$vt0)Fp0Z+(I^;HZx4;+sw4N#I1fqSmF*hUq@-T)g0j&p|hbH z@9+y<7K%M%e4_M1So9U|n9D-3m-%BaaKu7#7N{5kryT|c2GDpd$RD3Uqe#;k(iu`1 z7cqht$Z4{G8f29@sYQaIaA7M+EJ{x;xy6!El$wUMz`7+4UUZn4lapVbni5}>pI-uA zn~1y=4u^^dpwIygLpCrx;y1p)VGMC7a@GT7DX>F@n80hA8L+jmVdD~v3?(47U{7Mp zsx=JQM%b_pZ^N@Ae7uOIhOwBrhNYG@Pq>B!+c-fDTu%%mcxaso+p?t^)_9Pgz;47o zgADVH3q!0YcqWyth6&raSs6o-EOwb1Ht@IsD>hv@}=epzb!xu zSrT9hg{XngXu{$GIxEZqPO!gNOH0ypEi`$HVnA6GlmLo~K`c;b^%fhr=1PT(!h>>p z(RPqr0Ek!*BH}>=Xd6pW3aD!aT_D3-oC@xN#e|8Q#}r^e)QiUF6rhp=okm z)B2*O^$yRAnr;(VrgKl^p5b{(K<$R0)Qpt**)y{*32NRDk(lm1(R%^sMG>tJoD5PH zANd$~ByLD3UzgChD525e(&PDnM_`g*hx=_&1<(YYK)-jV_Z*h_yfb+hq+XWLxyqvp znx0bxwedwdxFKZ#sDOf{0(dh(54x`b6uK};7>#W?AR;Fr?Sp_-Z{U3pSSQKg`M8)F zx-UYSg`t)Ov@Zh3&IEWxUBi;X49Z_6pi&L&G;Aa6*j7f=Fk%}|uVGok0;_7lt2?md z*c#S&xNSA8sCywaS^cUwz%y6*sk%ixpvsE9L>JsiE%FDYcTRAfR|M@amw@&;fL5!4 zJIs)|EN<}VS3zP?aca>m?%c%e)KtivI;8dlWg<;BNF52D$Of(JC;|<8LngAB^Gi#R z*3EJ}YbA3^FKC@3vwTgY}n-TJbEO$XNm%ZnVc zPxyqc^T}Q0le^BRb&*eNh0%Jmm1aA%F7Rnx=5y^}z9B3+-F%{X2Xha{4St~xuAiTI z8O3ahK@FyPa!!J5*xT8Yz*Dw}oi*4RnAp-=4I{Q%sfH2jIve;L6L^s^sP+b@G6Ye> z6c2JISfGXpTtY%(nhhMCMTbG<-4PH0TJZpheQ+E?+d1GkJPImvKqV=Bq)xOXKRz|L zprkS$dF24ol54E;e4scq1;-)wAXnP2xl@JwW4k-zcn=PQ00mxaOL1i^)5E5T& z09%QGn90Ky6Ddq7%*YFPD;YFd{BH4r2c6D-0I@iMk)aZ__6pvWL70kAOqZLgn?jI4ct^%iOa~)E5^%@DHJu)*vvcCBH+HtPqAM@CRAfVy}HCxKZhtk~Dl zAyyJ1=jR#*tg~+nDR6gy(q<)#CVSNtg;4NvE`>w|&|(P%Xj@HB0W^JsETWK`Sg8Qs z1O!<*UJRNP0?*(eHp#*F`za)VHklMIwW1F=AJR^Wjm@RAeQf)~&<3%H?viwC)V3|=31ixph^+~NQY zPlIG{apdQuKn557 zcm(ID%-5f(zrp;9l=T;8MhV*vo)2scJc1pz4|oKw^Qc_pQCSdkg~tdq@+>5FT}bbu zklu=#YeF_1PB-8Rg0Aprd|+eXG0(T zU7&?GphOLogHhO4zI8CAF{ZGz!1wtCgO;{q(HqR5$?A7YI4?iGpeQppv8XaW8M88Cc+?}mC^J1XFEJ-RBQv!KlyECi2H`;c98m4@*$F%dhbw4O7(qjT6^zAv z;F1ue3+4+b-N{(S0B-HwVu!j&lc^{Ql-WQFRyCQ5LP5hhLYU5h4BkQq-`YSu1ao-4 z0s8~&4d~k3)D*Zskp|+RGmFlk9A*L;>^i}Dp6?{zg{b6<9?72=7(5xhm@cFjTu(2) zm|pyWfuVxYi|GRcLk5Hb$%0djCd(}j$d;9g5^xvfmI%~hxV7<_DaD{^ww#jGqSO@V z=-e$9P?2187tw5mOi7Zm1A~Y+$n(73 zOyGQ{agkr+0*3}T08p|Gs2vYV+MhwAh|`fq@M{=L;3)uBgBF?8Fko%dGNv%qFoG9q zG9&tu6^zBw;FN@=ZHH|<3^BG9jOq?}4+QQG!5Ri^Eiz;iKs)v|S^bK@>$LMhX|w=D z6oM)y_FG(;#o&40yyVnd%*7=|MW8MfczXC2GiVSJ)SoBjk1Km{){fP%yn9 zZ?+?Gg7sx#hfBhd2V9PO9P~KubI|8PV8msY$O}A?cX-8TurCq5!mD~i7_4(f`DJ1C z3q0zekqq$;K1hrrhcG8>i|HY78=Vu>s)4qmq1hNrA;Jo@kD`Go9dvdA1F<6s$VFc* zdkssG6ZW-wMP@j*K(b*Q*@Ly_7#XmeR?AkyQpAg0u86V6tcDGFEg#lhDs0$B|6umk za;C6=)>##?)^Me;R`G&Y+i_xDA;$&Nh;c|zLSsOz zsjTIx;VEY9F|XmN;Q*hfVN=6{EevZ|!Lr^ppq&|@Arf$GBZwLvP@BAlwT2@LG{uOJ z0JA_Fg4b}s)`x*ZfTO37g`tM2n5l*%7?hTFXb}xcR;l}GH9+;n87-D%C7;5=z_@Uv*QNvNg5A`V@3qy|| z3j@ff$_$9|PlcgKgOQ;GUPWW8)Iq12z{)2^P&k2Fj0op}St;PPkjYGu48aVrEvIPq zurM-2GE89X(T2%u@+M}2R@{Nsm?bKtgIBPF$|8k?1P~RUnF3m_UYwC%nvBi3wZQA-Kcmss+_#p!D3p zutRXa$S%mi2AYiE%GFJix#$(BYTXAS-hk>?;Udu163EIc_V}Fq^z_uCTkPeDMR}Qd z>EK$n2sEDxZhaMjb_NxJXGlPeNJxJUKDPqts&RqqS+L`7F=wU}7d-;CGuevsi%L>c zZn1%vhNfx?Kn93G(-;s3y#_f5?y91PATFr+c8edJhT}`};~}Zy7E4}!3UvMkH12TvnM#lR!nVShtRqQm`$tRiT8(REq9i?Vtb^!+ac249v9 zxxgWHlTT==DnH|DZj>;&#l;H6X58}u*9J08eBo_8?sLQL`{x8xfF z@(WCs+b^`=V0|LyLUPuHlIjl(4E2nDOy5CN5YtCERmvE|w7~u|1A|I1NK`PGX(Imz zUIsDsj{*z=GB<>kF7PNl0Bz|qyC`b5q2#itO$QffW=Z9`q}D}At(A2bB(<(d+I4t7 z;FsvH>8x2`eu-b}hJwm+{)PM-I8Sh1_lUUY5pf|tKZ-0X&g`U;DS62>$6KeB>kKCm-L*?-_+5RkvXA@}2p zHzR|9)F%cePOUpU!u|f8{ugAtPPkv;2?520#YBr4J{N^GFY#!8U}fUe`u#b8Mq5F9h22_=VLz3%LpO`Io;)0kIOQ;%dw)2 z#DeM~aJwBe{N2um(sIYTaSPjAHMThcSi7c+EfYsAwv;i2F@-6UaVaBc%NVv<>J;V_ z_>2;`E`;wC0at@y0x`A;-be=8a0wPi5TGR>Yv7}dpp(6@9j4L2md2REhTNIfWUtz% z;GS9ntE0dLwmPWFN(1lD%*@XNFL?$JVx>ZsUn?XeWT#dpBp}v2gR(QEbSPGUEz*XV zp`Zaduqrt*4|E_Gr1XJSdZ?97LISiLw+$&OO-%re$w3bX%PGzW*MZ=AK>?}?UI*Rc zh8P-Ol3HBi241l0r^#3ZD$h_V0#N4-ToHf@t*MN-I`%va6^z9y$O{)b8L@Tauva9o z1OcOA6$|q%&h(=E(t_gn%#@-HpaPjEGp{7I2s(ObfKV&G!87_%Ch3@SQ7V}L&z7*;s0_g?9}g8!06>K@}A)z|IAFWQG+h={x%k$f>C z`Lcb=W$V-n8mZv!ktSzR52)-1t^U2m0&-8$9}pi@2i;;W$S;5_=mizoMWE#(n(UC8 z1l)B51^O*+(1;-Ha19pF0eQDr!4*K!KhSUhXj%l6UKA9dLjr;rzCqd>iy_wv@>dO{ z^Z$j1L0oEv%6yHP8uN8$>Ry*JyeMUOSfi<~I}`!!ss#<9UExp#cls4B@+&NmzRa)N!E!@DWIF#u{sqh{!YA-w7BKB# zy}>U6S{ip*F7+~h+69g@a7dvPF`(iFgg=97x#~?9f{8%6=Vf7cxN@T>tHU! zs&FnN14GdgQ1Sw8sYeM=c$p1amp+{#1yp`Af=a&{rZR>ip&I5CMsPobxrT8zLkd$3 z^K6C`=D93z6^uPXHK6q|0#tX7W9ey8J8Te%v za9!fl0*zzHUEq*~#2+ZCVDSfJZj6&4#!$U!UgtW&C*996-glYs*1YmspunmTM2b*~a1ApkpTP9hiqtTsh=7L2 zY8bLWqr(WrU>0ZtC2aVoMkLD&EQms+aHojYFwbU85vyUJ&6pxy!#bNWMPe>{isT&D zTG1L&8l(zQnClrCDy1}~6APJ;4yp}KEK7wQQwy!p6hL!F3gD(`Vu?a#i2~>#lfb4k6Uc!OO`sKH3h)C=h|~_M2SK|nLG2BQG1;l$9gHBWK@B>EqEv8G733Sx zAQRL%poTx(DWED7(gOhLf~tTy7_3POp?-ksKy`x#D2PEv0q5qYl;%KA z1J(o?nwgTCSCW~AIEDgbJ+j5%;WymwflkJiq#_RQg}S38qck@uFEKMGzO*O@5*npN zIk1p~%YqzHTAT`wZ-tc1;)0yS%FMiUxUbONQ<4u_UVzv`Tf_!x5rIat!J9L0v6rVN zfyT6MaX}fN{sXAdQpIYUlbM}b#iClQs)|@fP!s|hQer6rDFL@Ciy}cy9?&|bA{P+L z8AO1&(V$)kYf);kX9`3mXx`@+n}SnLesXq|GK!Ny&b9%qw}N#O<1Qw~q*g%28$okr@b@Ie{0lLdGdqg4Csf2riJ~3=j*nU$F>OLlkj<#6W|Znqr8iIb^L0 zJ0ktAz-KCh5;P`;^e}ipMLNtYNK0~&g;#=l6qS(iQ8@+?h3mqq z7ll<9BwrTRT48umShs`YmZHv@l=WFFvsUL^*R#8%XLmu&zJvRgn%+k43(__hI3zx> zfzDvkn5nVA@}iXPbt#jJQYIThw#ROay>9Au(bVlg&1KV&%Tl2o{5K>uu1lIdbHogZeQd*ZDyc?JGo9RDl=Be_>+~m7MNB(SL!$1Af6%Jp}2ygbx>5PK zOKD$}(!MDo^+|+5MB$R6;U?P;!knT`j32rAAzMoo7&uk0bAWgKx?I=szo_GXStsxc zM-cSfunQsvS2+wJJyB4`hqd289c6G&^crl!1vIt*lZDbqeH)e<7Gf7>WAtA^iw!~J zNl;T^R1I?tVki{Xd0EV$<8V+~t?V`IMO-zEDXid@D?8G%ZN?fF1h0}olg$rOQG-Vo zz$0Iv%CiWxW>}LAyc7abrGg4sNXZ6XG6AZUVQcF^>>}{=3%GdWft3}Yat5sV78kTQ z0hMB+Flm&c1j~jNzM@o6wFoaa#No3ls1mFL!Is~4DG7T50Jxxps| zTZyl7kxyko@MS*D6^a-6bUK*9Inv^ysKpMM1I3p`y*s!-QwH1%xmToa2;QM}LD%(y zj@xAg_X`}dH@OvVXzFg@SSf#jNAU`e+6@_n4xXzVl91#AN*=JdA}+bWcYuIL(LwDa zn0_dYZHN{lxqwzLV@obfHSiJmT2PYWgc^!Ofkx?TSW%J-TMb(ca}_%S)}z&6ol(#s z&!Ckx;C3Bqa>0{QZn2f-fv$^y4X(n|3217a0h~OFG(i=n7AP7)UV_#lkg9_(B{e6t zBo#{{K$T!+Vqho+ZEtR1phY6M!6~;u<|3!=bq>>u9Hv*H8;Ug<-5`5XSwh@G{6P1p z#DnYZ`1o5~@u2f0N^?@<<8SfA$AfmMf)jK6Esl8T96F?B0ZKHG_AF>@p-2l{8m=Q)CpLjdpJhOBJ`uXhD+Hv_MR1uv5Yt$>8AfxQmW2AV8|Ovr*qxIq`U zKr%46%>r)asDT1r8$^J%KY>Se!O0pN_C=sGxWEKx<6N;T69YpF!wr7v29HlHf~-;> z^cdJU+antzKQb}0Ix>D{W?FeSzU!=%&fv6xZvW9tZp!Cz)Ut(Ru{$( zevEJhEUcPP16f!#Kk&fC*;&P*;_R&AA0(jSpP2Mn<)PyGtnwd{UAm)c8L{PJ{Dne!0SrtDB!L_hL zgZd*AE2{-0g@F>6rdSbZcjPU0&{6@=5&=<>g$ jKQXXsGJRxV6=S-Uz`($wxhkWdje+4Yhy%l{P{wCJ1_p-d3@HpLj5!QZAet$MF_$Tdi4nwR z&SB1FiDF@7U}A7*NMUJVNMTK7$^x4T)eogsGea0rY?X|fY%f6^KTXD4Y`OU3lANUt2mONJQ+GLwUWfdS;K&tI4r7^X5# zXQ*Mw0*RyHEMz@Uxe1I#K_##tVyIzU%?OdGWvpRzVVJ-e>&U=R%T&S+5oKVgVJZRH z2Ij7Ynpe!&BU-`@7Ghvv$l`&q5OfM-4HHatEprWXF=LNj4RZ>UBm)COElUk^3Nx6+ zTEY+0Q^TCX0uqC}hYg3H1YkN4be1rJ4P&i_GK#rMM4?Oum{=1dcC%~1F31vxsYlQ? zZ0U%QVy|J(0yz~S4Q9biFJ|mnQp27l4HiTpQdnWWV`Qjd&yq!v1aneYYgp46VIc=r zB@dQBA<)dhW)mAho7jl53E3RREJYM&fH~MhG7FUA!SV^6_lEl2^)LYEOB}KQGic)W}<|dXTXWU}W%qzLYQd*o^ zbc-iGvp7C8uOzi7FEOWxg@J+L7F$wLetB`~EwMWAF^rHoW`>f!J;F9QQZu^l4=!;c1r8{GW;7M<Hr+N) z#HD9=Os?zjxFfARf&GrK?2Pm!#aD&3@5so__n7H%K{et+RN`fsqzSIK#AR-%YOOF_ z7%_tj&bXtfvLF;Bwpexs+XprV1(o>~Gb`rT&aAyIZ+TJP@`}9m9VNZRdKY929w@6X zw^(Sg!t0{4`E_Nxi^_Hf*mhK0R`!^|aYJ5xe*Mh)EAj?6WKA?%8T z%?%LG>Y{|z4zmMZ2W+lL1b{`1E=m|}FuNjQ1?GWOhhLGf1@pkF%@0H!@VO!p2o?dW zHoqca{XjxtKL1Sq6(Z{;R!Usgw7RHibzRfxqNdXYm#7OdX%{kzE|gSV(5Sv9QS(8c zK}O|^0fT^OXZb~by%iOg`7JJRSbPR$O-;629P!}v5g&hxD?UCqKczG$H9r0pPkek~ zX<`m2wZzBY;)u`8%SbKCECI*TEnaA1NlwkliI3N0EYbu;2`FPa6lpOqFch)D2vAjA zEX2UT@S}y{2ES~B$9EPPR?80zGOU(G+Au|$>_wom{}u}<6%~PVH9v@{ms*jWS^z2# ziXoYg*DUz`($wxhi8mGXuk85C?`?p^VQZ3=9m@8B!Qh7;_kM8KW2(L2RZRrd;MI z=3JI27Dfgp26u)O<`#w&mQ|7JkitelC3_{iCdW&VHciG` zY{eOgMy6((Ot+X53o>u9<>sfP<`gG`WMLR;1H)$r1_p+9hUpBc3{i|J3{gxej8V+k z?do7iV@zRc;aCkdBZ{qqp@K1rJ(xk0`4)>)VsYv%mZZeu)MQ4e0uTkV2ZTRoFfcGo zWt`3c3LTIH14AcM4MQ(00|U&wTE-g2ELbQ)lz_<;#???085wY>U_w>_a*y9Fj^f0; z%#zHi)LXnTR(wffda)++E!N`Fg4Cj0Qt|1jCGlmMspau$nW;G`@rflRMVU#ZC8@=? z*b)m0Qu9(k9xG1GNxQ|8omyFZi!(kxIVZ8WI6l4@G`E4`Ud(1iOJcC>8Zu~`6>DNx-bdd{NzO4{NyCv^3P`SY`+`;`B6u_Dsw>aYC^AdAY>vZ-L4q(9<^h;9u;pQxnqUS^Mn6sFB9Jk+*i!S7 z^HWl9ab~1eq-3V27MEx;-r~s5Nr^8>Ey^thS*rj}Kesq+auRcsQWEW|Ea8!>S6Yyg zSdt3OyCp@5dBr)2C7Jno#qq@%iF!6U`N@en#ddlytummbC(FRV(7HZV_uW+l}kk`I0Z*)=K=$gFA1nwJ3y4RJAFDe;dQ!<_CHNkm?=nZw9<@F2eudBOW zRChg)dRg6Pg7*UEOCl;CnHiMLJ}@&Vn0{bm5D>Y}uXmAOZ$;^boQp11m-(wNa8!c> z-A|LXNCcGaML`6}Nk!rymOcXm!%7CQ60oO>q(Pz}0+dFJK`9(smV9PmW36F?s07LT zX>#0R&qyrJ$jMBCq&OB(K@2Xxia;g7Endf@;*z4oPP0D({Gy#N3J literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/test_models.cpython-312.pyc b/odoo-bringout-oca-ocb-web_editor/web_editor/models/__pycache__/test_models.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a63f0d5e01c83375bf2b3ed5c88185537ba72814 GIT binary patch literal 2012 zcmX@j%ge>Uz`($wxhmrm3j@Pr5C?`?p^VQN3=9m@8B!Qh7;_kM8KW3;nWC5&8JHN{ z8B&;97*d#18MD}+YLTeb%n(i#3s@yf3quMk0hO$kY?|yZLE1E#Zn5R&r=;c--(pM4 zOwCCtP6i3XFbkCNc@ZPXX{iiRj42FJOeu^}%qdJ!EGf)UtV|54Y*~Czbx71|C_9P+ ztU?INMWWy;xWFpJkffkYxC$OzDpFY1u&!o=D39U=tCE56kjWG_xEg-28UbAd1_L8YD#8Fevw`>Oh&H+ zEES%bq~HpcQh;kx0O@kmWO^yUz`*bl6s` zF*zeQHLpaIMU&|kqhqNO0|P@~sd{FPLY{hRafw1fVzEMEQBh{u;gt%97bt|}7v<-b zN3q&c`m!8s?fG$mC>AwN$cC9}i|6u!kJMVWc&ews43 zIO5~;5_41I<8N`r$LHp!l;(igJn`{`rHMIE8CI~8TRib8sl~}fnFS!1+~SHaDN4*M z&PgmuEdu4*TP)5QiAA?ql0hW9XI@EadTP-v_Dm>))h#DKvE&wO8kl0wE6q(U%1pk+ z;hUIOX_TLrdW$0$#$t2I%u6h)yv3FTp;=rKOHyyKq<}~c5W6HZH}w_=h!19Q2B+qv zCW9TtTMT2y7nc;>V(}=+&AG*r0VYFID@ty$l%!UatYr8MO3J^|^fU5vQ}r`I5tX7} zT$HSz1PYe?(h_|G{er~g?8NlcV*UJ-{Cr)Qgl>LvqHcb2k}e`;>LW2BC7V7dxq|{T zHK$mwpt1;5hJp!p1_p-WgA5D|Eetn!)EiuH2{cbVV5!Q%$6R7Y5UY-j9()GNF?4Q@A342G$`%&*YkaYIC9g4=Zwm5U-OpBPxx z*gkME^1CyB;bs%{U~KUHz{kKNj^rkUIgKtwx(o~qU_YT0-=O>p3fj+R;F<-!_-0~A zWzFINDL}>WB89z@S(D|K0K9Yn6%N6rNkyQ#tV#xJ`4L>21PX3HO^zZ#kefi|evvSU zB?2NuK?Ep$7Kt-3Fx+ARCFvqi842-$9!MHg3>JY1MNs@mLgPmp6hDRyK1dM*^EXJX zpC;Qa7EszK0#%2QEWqjus@cH70yYoLqFWp`kQ`=L1S(fSwMelR0|UbcW=2NF?;H$_ p3SZd786_vUP4}7T^Myg2QSyrk3!~(OvgtJwYrZnDFiL_Q4FEiM{i^@~ literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/assets.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/assets.py new file mode 100644 index 0000000..4c30441 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/assets.py @@ -0,0 +1,227 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import base64 +import re + +from odoo import api, models +from odoo.tools import misc +from odoo.addons.base.models.assetsbundle import EXTENSIONS + +_match_asset_file_url_regex = re.compile(r"^/(\w+)/(.+?)(\.custom\.(.+))?\.(\w+)$") + + +class Assets(models.AbstractModel): + _name = 'web_editor.assets' + _description = 'Assets Utils' + + @api.model + def reset_asset(self, url, bundle): + """ + Delete the potential customizations made to a given (original) asset. + + Params: + url (str): the URL of the original asset (scss / js) file + + bundle (str): + the name of the bundle in which the customizations to delete + were made + """ + custom_url = self._make_custom_asset_url(url, bundle) + + # Simply delete the attachement which contains the modified scss/js file + # and the xpath view which links it + self._get_custom_attachment(custom_url).unlink() + self._get_custom_asset(custom_url).unlink() + + @api.model + def save_asset(self, url, bundle, content, file_type): + """ + Customize the content of a given asset (scss / js). + + Params: + url (src): + the URL of the original asset to customize (whether or not the + asset was already customized) + + bundle (src): + the name of the bundle in which the customizations will take + effect + + content (src): the new content of the asset (scss / js) + + file_type (src): + either 'scss' or 'js' according to the file being customized + """ + custom_url = self._make_custom_asset_url(url, bundle) + datas = base64.b64encode((content or "\n").encode("utf-8")) + + # Check if the file to save had already been modified + custom_attachment = self._get_custom_attachment(custom_url) + if custom_attachment: + # If it was already modified, simply override the corresponding + # attachment content + custom_attachment.write({"datas": datas}) + else: + # If not, create a new attachment to copy the original scss/js file + # content, with its modifications + new_attach = { + 'name': url.split("/")[-1], + 'type': "binary", + 'mimetype': (file_type == 'js' and 'text/javascript' or 'text/scss'), + 'datas': datas, + 'url': custom_url, + } + new_attach.update(self._save_asset_hook()) + self.env["ir.attachment"].create(new_attach) + + # Create an asset with the new attachment + IrAsset = self.env['ir.asset'] + new_asset = { + 'path': custom_url, + 'target': url, + 'directive': 'replace', + **self._save_asset_hook(), + } + target_asset = self._get_custom_asset(url) + if target_asset: + new_asset['name'] = target_asset.name + ' override' + new_asset['bundle'] = target_asset.bundle + new_asset['sequence'] = target_asset.sequence + else: + new_asset['name'] = '%s: replace %s' % (bundle, custom_url.split('/')[-1]) + new_asset['bundle'] = IrAsset._get_related_bundle(url, bundle) + IrAsset.create(new_asset) + + self.env["ir.qweb"].clear_caches() + + @api.model + def _get_content_from_url(self, url, url_info=None, custom_attachments=None): + """ + Fetch the content of an asset (scss / js) file. That content is either + the one of the related file on the disk or the one of the corresponding + custom ir.attachment record. + + Params: + url (str): the URL of the asset (scss / js) file/ir.attachment + + url_info (dict, optional): + the related url info (see _get_data_from_url) (allows to optimize + some code which already have the info and do not want this + function to re-get it) + + custom_attachments (ir.attachment(), optional): + the related custom ir.attachment records the function might need + to search into (allows to optimize some code which already have + that info and do not want this function to re-get it) + + Returns: + utf-8 encoded content of the asset (scss / js) + """ + if url_info is None: + url_info = self._get_data_from_url(url) + + if url_info["customized"]: + # If the file is already customized, the content is found in the + # corresponding attachment + attachment = None + if custom_attachments is None: + attachment = self._get_custom_attachment(url) + else: + attachment = custom_attachments.filtered(lambda r: r.url == url) + return attachment and base64.b64decode(attachment.datas) or False + + # If the file is not yet customized, the content is found by reading + # the local file + with misc.file_open(url.strip('/'), 'rb', filter_ext=EXTENSIONS) as f: + return f.read() + + @api.model + def _get_data_from_url(self, url): + """ + Return information about an asset (scss / js) file/ir.attachment just by + looking at its URL. + + Params: + url (str): the url of the asset (scss / js) file/ir.attachment + + Returns: + dict: + module (str): the original asset's related app + + resource_path (str): + the relative path to the original asset from the related app + + customized (bool): whether the asset is a customized one or not + + bundle (str): + the name of the bundle the asset customizes (False if this + is not a customized asset) + """ + m = _match_asset_file_url_regex.match(url) + if not m: + return False + return { + 'module': m.group(1), + 'resource_path': "%s.%s" % (m.group(2), m.group(5)), + 'customized': bool(m.group(3)), + 'bundle': m.group(4) or False + } + + @api.model + def _make_custom_asset_url(self, url, bundle_xmlid): + """ + Return the customized version of an asset URL, that is the URL the asset + would have if it was customized. + + Params: + url (str): the original asset's url + bundle_xmlid (str): the name of the bundle the asset would customize + + Returns: + str: the URL the given asset would have if it was customized in the + given bundle + """ + parts = url.rsplit(".", 1) + return "%s.custom.%s.%s" % (parts[0], bundle_xmlid, parts[1]) + + @api.model + def _get_custom_attachment(self, custom_url, op='='): + """ + Fetch the ir.attachment record related to the given customized asset. + + Params: + custom_url (str): the URL of the customized asset + op (str, default: '='): the operator to use to search the records + + Returns: + ir.attachment() + """ + assert op in ('in', '='), 'Invalid operator' + return self.env["ir.attachment"].search([("url", op, custom_url)]) + + @api.model + def _get_custom_asset(self, custom_url): + """ + Fetch the ir.asset record related to the given customized asset (the + inheriting view which replace the original asset by the customized one). + + Params: + custom_url (str): the URL of the customized asset + + Returns: + ir.asset() + """ + url = custom_url[1:] if custom_url.startswith(('/', '\\')) else custom_url + return self.env['ir.asset'].search([('path', 'like', url)]) + + @api.model + def _save_asset_hook(self): + """ + Returns the additional values to use to write the DB on customized + attachment and asset creation. + + Returns: + dict + """ + return {} diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_attachment.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_attachment.py new file mode 100644 index 0000000..6e01174 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_attachment.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from werkzeug.urls import url_quote + +from odoo import api, models, fields, tools + +SUPPORTED_IMAGE_MIMETYPES = ['image/gif', 'image/jpe', 'image/jpeg', 'image/jpg', 'image/png', 'image/svg+xml'] +SUPPORTED_IMAGE_EXTENSIONS = ['.gif', '.jpe', '.jpeg', '.jpg', '.png', '.svg'] + + +class IrAttachment(models.Model): + + _inherit = "ir.attachment" + + local_url = fields.Char("Attachment URL", compute='_compute_local_url') + image_src = fields.Char(compute='_compute_image_src') + image_width = fields.Integer(compute='_compute_image_size') + image_height = fields.Integer(compute='_compute_image_size') + original_id = fields.Many2one('ir.attachment', string="Original (unoptimized, unresized) attachment") + + def _compute_local_url(self): + for attachment in self: + if attachment.url: + attachment.local_url = attachment.url + else: + attachment.local_url = '/web/image/%s?unique=%s' % (attachment.id, attachment.checksum) + + @api.depends('mimetype', 'url', 'name') + def _compute_image_src(self): + for attachment in self: + # Only add a src for supported images + if not attachment.mimetype or attachment.mimetype.split(';')[0] not in SUPPORTED_IMAGE_MIMETYPES: + attachment.image_src = False + continue + + if attachment.type == 'url': + attachment.image_src = attachment.url + else: + # Adding unique in URLs for cache-control + unique = attachment.checksum[:8] + if attachment.url: + # For attachments-by-url, unique is used as a cachebuster. They + # currently do not leverage max-age headers. + separator = '&' if '?' in attachment.url else '?' + attachment.image_src = '%s%sunique=%s' % (attachment.url, separator, unique) + else: + name = url_quote(attachment.name) + attachment.image_src = '/web/image/%s-%s/%s' % (attachment.id, unique, name) + + @api.depends('datas') + def _compute_image_size(self): + for attachment in self: + try: + image = tools.base64_to_image(attachment.datas) + attachment.image_width = image.width + attachment.image_height = image.height + except Exception: + attachment.image_width = 0 + attachment.image_height = 0 + + def _get_media_info(self): + """Return a dict with the values that we need on the media dialog.""" + self.ensure_one() + return self._read_format(['id', 'name', 'description', 'mimetype', 'checksum', 'url', 'type', 'res_id', 'res_model', 'public', 'access_token', 'image_src', 'image_width', 'image_height', 'original_id'])[0] + + def _can_bypass_rights_on_media_dialog(self, **attachment_data): + """ This method is meant to be overridden, for instance to allow to + create image attachment despite the user not allowed to create + attachment, eg: + - Portal user uploading an image on the forum (bypass acl) + - Non admin user uploading an unsplash image (bypass binary/url check) + """ + return False diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_http.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_http.py new file mode 100644 index 0000000..c6f17e3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_http.py @@ -0,0 +1,31 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models +from odoo.http import request + + +CONTEXT_KEYS = ['editable', 'edit_translations', 'translatable'] + + +class IrHttp(models.AbstractModel): + _inherit = 'ir.http' + + @classmethod + def _get_web_editor_context(cls): + """ Check for ?editable and stuff in the query-string """ + return { + key: True + for key in CONTEXT_KEYS + if key in request.httprequest.args and key not in request.env.context + } + + @classmethod + def _pre_dispatch(cls, rule, args): + super()._pre_dispatch(rule, args) + ctx = cls._get_web_editor_context() + request.update_context(**ctx) + + @classmethod + def _get_translation_frontend_modules_name(cls): + mods = super(IrHttp, cls)._get_translation_frontend_modules_name() + return mods + ['web_editor'] diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_qweb_fields.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_qweb_fields.py new file mode 100644 index 0000000..ee2ccd0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_qweb_fields.py @@ -0,0 +1,665 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +""" +Web_editor-context rendering needs to add some metadata to rendered and allow to edit fields, +as well as render a few fields differently. + +Also, adds methods to convert values back to Odoo models. +""" + +import babel +import base64 +import io +import json +import logging +import os +import re + +import pytz +import requests +from datetime import datetime +from lxml import etree, html +from PIL import Image as I +from werkzeug import urls + +import odoo.modules + +from odoo import _, api, models, fields +from odoo.exceptions import UserError, ValidationError +from odoo.tools import ustr, posix_to_ldml, pycompat +from odoo.tools import html_escape as escape +from odoo.tools.misc import get_lang, babel_locale_parse + +REMOTE_CONNECTION_TIMEOUT = 2.5 + +logger = logging.getLogger(__name__) + + +class IrQWeb(models.AbstractModel): + """ IrQWeb object for rendering editor stuff + """ + _inherit = 'ir.qweb' + + def _compile_node(self, el, compile_context, indent): + snippet_key = compile_context.get('snippet-key') + if snippet_key == compile_context['template'] \ + or compile_context.get('snippet-sub-call-key') == compile_context['template']: + # Get the path of element to only consider the first node of the + # snippet template content (ignoring all ancestors t elements which + # are not t-call ones) + nb_real_elements_in_hierarchy = 0 + node = el + while node is not None and nb_real_elements_in_hierarchy < 2: + if node.tag != 't' or 't-call' in node.attrib: + nb_real_elements_in_hierarchy += 1 + node = node.getparent() + if nb_real_elements_in_hierarchy == 1: + # The first node might be a call to a sub template + sub_call = el.get('t-call') + if sub_call: + el.set('t-options', f"{{'snippet-key': '{snippet_key}', 'snippet-sub-call-key': '{sub_call}'}}") + # If it already has a data-snippet it is a saved or an inherited snippet. + # Do not override it. + elif 'data-snippet' not in el.attrib: + el.attrib['data-snippet'] = snippet_key.split('.', 1)[-1] + + return super()._compile_node(el, compile_context, indent) + + # compile directives + + def _compile_directive_snippet(self, el, compile_context, indent): + key = el.attrib.pop('t-snippet') + el.set('t-call', key) + snippet_lang = self._context.get('snippet_lang') + if snippet_lang: + el.set('t-lang', f"'{snippet_lang}'") + + el.set('t-options', f"{{'snippet-key': {key!r}}}") + view = self.env['ir.ui.view']._get(key).sudo() + name = el.attrib.pop('string', view.name) + thumbnail = el.attrib.pop('t-thumbnail', "oe-thumbnail") + # Forbid sanitize contains the specific reason: + # - "true": always forbid + # - "form": forbid if forms are sanitized + forbid_sanitize = el.attrib.pop('t-forbid-sanitize', None) + div = '
' % ( + escape(pycompat.to_text(name)), + escape(pycompat.to_text(thumbnail)), + escape(pycompat.to_text(view.id)), + escape(pycompat.to_text(el.findtext('keywords'))), + f'data-oe-forbid-sanitize="{forbid_sanitize}"' if forbid_sanitize else '', + ) + self._append_text(div, compile_context) + code = self._compile_node(el, compile_context, indent) + self._append_text('
', compile_context) + return code + + def _compile_directive_snippet_call(self, el, compile_context, indent): + key = el.attrib.pop('t-snippet-call') + el.set('t-call', key) + el.set('t-options', f"{{'snippet-key': {key!r}}}") + return self._compile_node(el, compile_context, indent) + + def _compile_directive_install(self, el, compile_context, indent): + key = el.attrib.pop('t-install') + thumbnail = el.attrib.pop('t-thumbnail', 'oe-thumbnail') + if self.user_has_groups('base.group_system'): + module = self.env['ir.module.module'].search([('name', '=', key)]) + if not module or module.state == 'installed': + return [] + name = el.attrib.get('string') or 'Snippet' + div = '
' % ( + escape(pycompat.to_text(name)), + module.id, + module.display_name, + escape(pycompat.to_text(thumbnail)) + ) + self._append_text(div, compile_context) + return [] + + def _compile_directive_placeholder(self, el, compile_context, indent): + el.set('t-att-placeholder', el.attrib.pop('t-placeholder')) + return [] + + # order and ignore + + def _directives_eval_order(self): + directives = super()._directives_eval_order() + # Insert before "att" as those may rely on static attributes like + # "string" and "att" clears all of those + index = directives.index('att') - 1 + directives.insert(index, 'placeholder') + directives.insert(index, 'snippet') + directives.insert(index, 'snippet-call') + directives.insert(index, 'install') + return directives + + def _get_template_cache_keys(self): + return super()._get_template_cache_keys() + ['snippet_lang'] + + +#------------------------------------------------------ +# QWeb fields +#------------------------------------------------------ + + +class Field(models.AbstractModel): + _name = 'ir.qweb.field' + _description = 'Qweb Field' + _inherit = 'ir.qweb.field' + + @api.model + def attributes(self, record, field_name, options, values): + attrs = super(Field, self).attributes(record, field_name, options, values) + field = record._fields[field_name] + + placeholder = options.get('placeholder') or getattr(field, 'placeholder', None) + if placeholder: + attrs['placeholder'] = placeholder + + if options['translate'] and field.type in ('char', 'text'): + lang = record.env.lang or 'en_US' + base_lang = record._get_base_lang() + if lang == base_lang: + attrs['data-oe-translation-state'] = 'translated' + else: + base_value = record.with_context(lang=base_lang)[field_name] + value = record[field_name] + attrs['data-oe-translation-state'] = 'translated' if base_value != value else 'to_translate' + + return attrs + + def value_from_string(self, value): + return value + + @api.model + def from_html(self, model, field, element): + return self.value_from_string(element.text_content().strip()) + + +class Integer(models.AbstractModel): + _name = 'ir.qweb.field.integer' + _description = 'Qweb Field Integer' + _inherit = 'ir.qweb.field.integer' + + @api.model + def from_html(self, model, field, element): + lang = self.user_lang() + value = element.text_content().strip() + return int(value.replace(lang.thousands_sep or '', '')) + + +class Float(models.AbstractModel): + _name = 'ir.qweb.field.float' + _description = 'Qweb Field Float' + _inherit = 'ir.qweb.field.float' + + @api.model + def from_html(self, model, field, element): + lang = self.user_lang() + value = element.text_content().strip() + return float(value.replace(lang.thousands_sep or '', '') + .replace(lang.decimal_point, '.')) + + +class ManyToOne(models.AbstractModel): + _name = 'ir.qweb.field.many2one' + _description = 'Qweb Field Many to One' + _inherit = 'ir.qweb.field.many2one' + + @api.model + def attributes(self, record, field_name, options, values): + attrs = super(ManyToOne, self).attributes(record, field_name, options, values) + if options.get('inherit_branding'): + many2one = record[field_name] + if many2one: + attrs['data-oe-many2one-id'] = many2one.id + attrs['data-oe-many2one-model'] = many2one._name + return attrs + + @api.model + def from_html(self, model, field, element): + Model = self.env[element.get('data-oe-model')] + id = int(element.get('data-oe-id')) + M2O = self.env[field.comodel_name] + field_name = element.get('data-oe-field') + many2one_id = int(element.get('data-oe-many2one-id')) + record = many2one_id and M2O.browse(many2one_id) + if record and record.exists(): + # save the new id of the many2one + Model.browse(id).write({field_name: many2one_id}) + + # not necessary, but might as well be explicit about it + return None + + +class Contact(models.AbstractModel): + _name = 'ir.qweb.field.contact' + _description = 'Qweb Field Contact' + _inherit = 'ir.qweb.field.contact' + + @api.model + def attributes(self, record, field_name, options, values): + attrs = super(Contact, self).attributes(record, field_name, options, values) + if options.get('inherit_branding'): + attrs['data-oe-contact-options'] = json.dumps(options) + return attrs + + # helper to call the rendering of contact field + @api.model + def get_record_to_html(self, ids, options=None): + return self.value_to_html(self.env['res.partner'].search([('id', '=', ids[0])]), options=options) + + +class Date(models.AbstractModel): + _name = 'ir.qweb.field.date' + _description = 'Qweb Field Date' + _inherit = 'ir.qweb.field.date' + + @api.model + def attributes(self, record, field_name, options, values): + attrs = super(Date, self).attributes(record, field_name, options, values) + if options.get('inherit_branding'): + attrs['data-oe-original'] = record[field_name] + + if record._fields[field_name].type == 'datetime': + attrs = self.env['ir.qweb.field.datetime'].attributes(record, field_name, options, values) + attrs['data-oe-type'] = 'datetime' + return attrs + + lg = self.env['res.lang']._lang_get(self.env.user.lang) or get_lang(self.env) + locale = babel_locale_parse(lg.code) + babel_format = value_format = posix_to_ldml(lg.date_format, locale=locale) + + if record[field_name]: + date = fields.Date.from_string(record[field_name]) + value_format = pycompat.to_text(babel.dates.format_date(date, format=babel_format, locale=locale)) + + attrs['data-oe-original-with-format'] = value_format + return attrs + + @api.model + def from_html(self, model, field, element): + value = element.text_content().strip() + if not value: + return False + + lg = self.env['res.lang']._lang_get(self.env.user.lang) or get_lang(self.env) + date = datetime.strptime(value, lg.date_format) + return fields.Date.to_string(date) + + +class DateTime(models.AbstractModel): + _name = 'ir.qweb.field.datetime' + _description = 'Qweb Field Datetime' + _inherit = 'ir.qweb.field.datetime' + + @api.model + def attributes(self, record, field_name, options, values): + attrs = super(DateTime, self).attributes(record, field_name, options, values) + + if options.get('inherit_branding'): + value = record[field_name] + + lg = self.env['res.lang']._lang_get(self.env.user.lang) or get_lang(self.env) + locale = babel_locale_parse(lg.code) + babel_format = value_format = posix_to_ldml('%s %s' % (lg.date_format, lg.time_format), locale=locale) + tz = record.env.context.get('tz') or self.env.user.tz + + if isinstance(value, str): + value = fields.Datetime.from_string(value) + + if value: + # convert from UTC (server timezone) to user timezone + value = fields.Datetime.context_timestamp(self.with_context(tz=tz), timestamp=value) + value_format = pycompat.to_text(babel.dates.format_datetime(value, format=babel_format, locale=locale)) + value = fields.Datetime.to_string(value) + + attrs['data-oe-original'] = value + attrs['data-oe-original-with-format'] = value_format + attrs['data-oe-original-tz'] = tz + return attrs + + @api.model + def from_html(self, model, field, element): + value = element.text_content().strip() + if not value: + return False + + # parse from string to datetime + lg = self.env['res.lang']._lang_get(self.env.user.lang) or get_lang(self.env) + try: + datetime_format = f'{lg.date_format} {lg.time_format}' + dt = datetime.strptime(value, datetime_format) + except ValueError: + raise ValidationError(_("The datetime %s does not match the format %s", value, datetime_format)) + + # convert back from user's timezone to UTC + tz_name = element.attrib.get('data-oe-original-tz') or self.env.context.get('tz') or self.env.user.tz + if tz_name: + try: + user_tz = pytz.timezone(tz_name) + utc = pytz.utc + + dt = user_tz.localize(dt).astimezone(utc) + except Exception: + logger.warning( + "Failed to convert the value for a field of the model" + " %s back from the user's timezone (%s) to UTC", + model, tz_name, + exc_info=True) + + # format back to string + return fields.Datetime.to_string(dt) + + +class Text(models.AbstractModel): + _name = 'ir.qweb.field.text' + _description = 'Qweb Field Text' + _inherit = 'ir.qweb.field.text' + + @api.model + def from_html(self, model, field, element): + return html_to_text(element) + + +class Selection(models.AbstractModel): + _name = 'ir.qweb.field.selection' + _description = 'Qweb Field Selection' + _inherit = 'ir.qweb.field.selection' + + @api.model + def from_html(self, model, field, element): + value = element.text_content().strip() + selection = field.get_description(self.env)['selection'] + for k, v in selection: + if isinstance(v, str): + v = ustr(v) + if value == v: + return k + + raise ValueError(u"No value found for label %s in selection %s" % ( + value, selection)) + + +class HTML(models.AbstractModel): + _name = 'ir.qweb.field.html' + _description = 'Qweb Field HTML' + _inherit = 'ir.qweb.field.html' + + @api.model + def attributes(self, record, field_name, options, values=None): + attrs = super().attributes(record, field_name, options, values) + if options.get('inherit_branding'): + field = record._fields[field_name] + if field.sanitize: + if field.sanitize_overridable and not record.user_has_groups('base.group_sanitize_override'): + try: + field.convert_to_column(record[field_name], record) + except UserError: + # The field contains element(s) that would be removed if + # sanitized. It means that someone who was part of a + # group allowing to bypass the sanitation saved that + # field previously. Mark the field as not editable. + attrs['data-oe-sanitize-prevent-edition'] = 1 + if not (field.sanitize_overridable and record.user_has_groups('base.group_sanitize_override')): + # Don't mark the field as 'sanitize' if the sanitize is + # defined as overridable and the user has the right to do so + attrs['data-oe-sanitize'] = 1 if field.sanitize_form else 'allow_form' + + return attrs + + @api.model + def from_html(self, model, field, element): + content = [] + if element.text: + content.append(element.text) + content.extend(html.tostring(child, encoding='unicode') + for child in element.iterchildren(tag=etree.Element)) + return '\n'.join(content) + + +class Image(models.AbstractModel): + """ + Widget options: + + ``class`` + set as attribute on the generated tag + """ + _name = 'ir.qweb.field.image' + _description = 'Qweb Field Image' + _inherit = 'ir.qweb.field.image' + + local_url_re = re.compile(r'^/(?P[^]]+)/static/(?P.+)$') + + @api.model + def from_html(self, model, field, element): + if element.find('img') is None: + return False + url = element.find('img').get('src') + + url_object = urls.url_parse(url) + if url_object.path.startswith('/web/image'): + fragments = url_object.path.split('/') + query = url_object.decode_query() + url_id = fragments[3].split('-')[0] + # ir.attachment image urls: /web/image/[-][/...] + if url_id.isdigit(): + model = 'ir.attachment' + oid = url_id + field = 'datas' + # url of binary field on model: /web/image///[/...] + else: + model = query.get('model', fragments[3]) + oid = query.get('id', fragments[4]) + field = query.get('field', fragments[5]) + item = self.env[model].browse(int(oid)) + return item[field] + + if self.local_url_re.match(url_object.path): + return self.load_local_url(url) + + return self.load_remote_url(url) + + def load_local_url(self, url): + match = self.local_url_re.match(urls.url_parse(url).path) + + rest = match.group('rest') + for sep in os.sep, os.altsep: + if sep and sep != '/': + rest.replace(sep, '/') + + path = odoo.modules.get_module_resource( + match.group('module'), 'static', *(rest.split('/'))) + + if not path: + return None + + try: + with open(path, 'rb') as f: + # force complete image load to ensure it's valid image data + image = I.open(f) + image.load() + f.seek(0) + return base64.b64encode(f.read()) + except Exception: + logger.exception("Failed to load local image %r", url) + return None + + def load_remote_url(self, url): + try: + # should probably remove remote URLs entirely: + # * in fields, downloading them without blowing up the server is a + # challenge + # * in views, may trigger mixed content warnings if HTTPS CMS + # linking to HTTP images + # implement drag & drop image upload to mitigate? + + req = requests.get(url, timeout=REMOTE_CONNECTION_TIMEOUT) + # PIL needs a seekable file-like image so wrap result in IO buffer + image = I.open(io.BytesIO(req.content)) + # force a complete load of the image data to validate it + image.load() + except Exception: + logger.warning("Failed to load remote image %r", url, exc_info=True) + return None + + # don't use original data in case weird stuff was smuggled in, with + # luck PIL will remove some of it? + out = io.BytesIO() + image.save(out, image.format) + return base64.b64encode(out.getvalue()) + + +class Monetary(models.AbstractModel): + _name = 'ir.qweb.field.monetary' + _inherit = 'ir.qweb.field.monetary' + + @api.model + def from_html(self, model, field, element): + lang = self.user_lang() + + value = element.find('span').text_content().strip() + + return float(value.replace(lang.thousands_sep or '', '') + .replace(lang.decimal_point, '.')) + + +class Duration(models.AbstractModel): + _name = 'ir.qweb.field.duration' + _description = 'Qweb Field Duration' + _inherit = 'ir.qweb.field.duration' + + @api.model + def attributes(self, record, field_name, options, values): + attrs = super(Duration, self).attributes(record, field_name, options, values) + if options.get('inherit_branding'): + attrs['data-oe-original'] = record[field_name] + return attrs + + @api.model + def from_html(self, model, field, element): + value = element.text_content().strip() + + # non-localized value + return float(value) + + +class RelativeDatetime(models.AbstractModel): + _name = 'ir.qweb.field.relative' + _description = 'Qweb Field Relative' + _inherit = 'ir.qweb.field.relative' + + # get formatting from ir.qweb.field.relative but edition/save from datetime + + +class QwebView(models.AbstractModel): + _name = 'ir.qweb.field.qweb' + _description = 'Qweb Field qweb' + _inherit = 'ir.qweb.field.qweb' + + +def html_to_text(element): + """ Converts HTML content with HTML-specified line breaks (br, p, div, ...) + in roughly equivalent textual content. + + Used to replace and fixup the roundtripping of text and m2o: when using + libxml 2.8.0 (but not 2.9.1) and parsing HTML with lxml.html.fromstring + whitespace text nodes (text nodes composed *solely* of whitespace) are + stripped out with no recourse, and fundamentally relying on newlines + being in the text (e.g. inserted during user edition) is probably poor form + anyway. + + -> this utility function collapses whitespace sequences and replaces + nodes by roughly corresponding linebreaks + * p are pre-and post-fixed by 2 newlines + * br are replaced by a single newline + * block-level elements not already mentioned are pre- and post-fixed by + a single newline + + ought be somewhat similar (but much less high-tech) to aaronsw's html2text. + the latter produces full-blown markdown, our text -> html converter only + replaces newlines by
elements at this point so we're reverting that, + and a few more newline-ish elements in case the user tried to add + newlines/paragraphs into the text field + + :param element: lxml.html content + :returns: corresponding pure-text output + """ + + # output is a list of str | int. Integers are padding requests (in minimum + # number of newlines). When multiple padding requests, fold them into the + # biggest one + output = [] + _wrap(element, output) + + # remove any leading or tailing whitespace, replace sequences of + # (whitespace)\n(whitespace) by a single newline, where (whitespace) is a + # non-newline whitespace in this case + return re.sub( + r'[ \t\r\f]*\n[ \t\r\f]*', + '\n', + ''.join(_realize_padding(output)).strip()) + +_PADDED_BLOCK = set('p h1 h2 h3 h4 h5 h6'.split()) +# https://developer.mozilla.org/en-US/docs/HTML/Block-level_elements minus p +_MISC_BLOCK = set(( + 'address article aside audio blockquote canvas dd dl div figcaption figure' + ' footer form header hgroup hr ol output pre section tfoot ul video' +).split()) + + +def _collapse_whitespace(text): + """ Collapses sequences of whitespace characters in ``text`` to a single + space + """ + return re.sub(r'\s+', ' ', text) + + +def _realize_padding(it): + """ Fold and convert padding requests: integers in the output sequence are + requests for at least n newlines of padding. Runs thereof can be collapsed + into the largest requests and converted to newlines. + """ + padding = 0 + for item in it: + if isinstance(item, int): + padding = max(padding, item) + continue + + if padding: + yield '\n' * padding + padding = 0 + + yield item + # leftover padding irrelevant as the output will be stripped + + +def _wrap(element, output, wrapper=''): + """ Recursively extracts text from ``element`` (via _element_to_text), and + wraps it all in ``wrapper``. Extracted text is added to ``output`` + + :type wrapper: basestring | int + """ + output.append(wrapper) + if element.text: + output.append(_collapse_whitespace(element.text)) + for child in element: + _element_to_text(child, output) + output.append(wrapper) + + +def _element_to_text(e, output): + if e.tag == 'br': + output.append('\n') + elif e.tag in _PADDED_BLOCK: + _wrap(e, output, 2) + elif e.tag in _MISC_BLOCK: + _wrap(e, output, 1) + else: + # inline + _wrap(e, output) + + if e.tail: + output.append(_collapse_whitespace(e.tail)) diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_ui_view.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_ui_view.py new file mode 100644 index 0000000..9bb57ea --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_ui_view.py @@ -0,0 +1,523 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import copy +import logging +import uuid +from lxml import etree, html + +from odoo import api, models, _ +from odoo.osv import expression +from odoo.exceptions import ValidationError +from odoo.addons.base.models.ir_ui_view import MOVABLE_BRANDING + +_logger = logging.getLogger(__name__) + +EDITING_ATTRIBUTES = MOVABLE_BRANDING + [ + 'data-oe-type', + 'data-oe-expression', + 'data-oe-translation-id', + 'data-note-id' +] + + +class IrUiView(models.Model): + _inherit = 'ir.ui.view' + + def _get_cleaned_non_editing_attributes(self, attributes): + """ + Returns a new mapping of attributes -> value without the parts that are + not meant to be saved (branding, editing classes, ...). Note that + classes are meant to be cleaned on the client side before saving as + mostly linked to the related options (so we are not supposed to know + which to remove here). + + :param attributes: a mapping of attributes -> value + :return: a new mapping of attributes -> value + """ + attributes = {k: v for k, v in attributes if k not in EDITING_ATTRIBUTES} + if 'class' in attributes: + classes = attributes['class'].split() + attributes['class'] = ' '.join([c for c in classes if c != 'o_editable']) + if attributes.get('contenteditable') == 'true': + del attributes['contenteditable'] + return attributes + + #------------------------------------------------------ + # Save from html + #------------------------------------------------------ + + @api.model + def extract_embedded_fields(self, arch): + return arch.xpath('//*[@data-oe-model != "ir.ui.view"]') + + @api.model + def extract_oe_structures(self, arch): + return arch.xpath('//*[hasclass("oe_structure")][contains(@id, "oe_structure")]') + + @api.model + def get_default_lang_code(self): + return False + + @api.model + def save_embedded_field(self, el): + Model = self.env[el.get('data-oe-model')] + field = el.get('data-oe-field') + + model = 'ir.qweb.field.' + el.get('data-oe-type') + converter = self.env[model] if model in self.env else self.env['ir.qweb.field'] + + try: + value = converter.from_html(Model, Model._fields[field], el) + if value is not None: + # TODO: batch writes? + record = Model.browse(int(el.get('data-oe-id'))) + if not self.env.context.get('lang') and self.get_default_lang_code(): + record.with_context(lang=self.get_default_lang_code()).write({field: value}) + else: + record.write({field: value}) + + if callable(Model._fields[field].translate): + self._copy_custom_snippet_translations(record, field) + + except (ValueError, TypeError): + raise ValidationError(_("Invalid field value for %s: %s", Model._fields[field].string, el.text_content().strip())) + + def save_oe_structure(self, el): + self.ensure_one() + + if el.get('id') in self.key: + # Do not inherit if the oe_structure already has its own inheriting view + return False + + arch = etree.Element('data') + xpath = etree.Element('xpath', expr="//*[hasclass('oe_structure')][@id='{}']".format(el.get('id')), position="replace") + arch.append(xpath) + attributes = self._get_cleaned_non_editing_attributes(el.attrib.items()) + structure = etree.Element(el.tag, attrib=attributes) + structure.text = el.text + xpath.append(structure) + for child in el.iterchildren(tag=etree.Element): + structure.append(copy.deepcopy(child)) + + vals = { + 'inherit_id': self.id, + 'name': '%s (%s)' % (self.name, el.get('id')), + 'arch': self._pretty_arch(arch), + 'key': '%s_%s' % (self.key, el.get('id')), + 'type': 'qweb', + 'mode': 'extension', + } + vals.update(self._save_oe_structure_hook()) + oe_structure_view = self.env['ir.ui.view'].create(vals) + self._copy_custom_snippet_translations(oe_structure_view, 'arch_db') + + return True + + @api.model + def _copy_custom_snippet_translations(self, record, html_field): + """ Given a ``record`` and its HTML ``field``, detect any + usage of a custom snippet and copy its translations. + """ + lang_value = record[html_field] + if not lang_value: + return + + tree = html.fromstring(lang_value) + for custom_snippet_el in tree.xpath('//*[hasclass("s_custom_snippet")]'): + custom_snippet_name = custom_snippet_el.get('data-name') + custom_snippet_view = self.search([('name', '=', custom_snippet_name)], limit=1) + if custom_snippet_view: + self._copy_field_terms_translations(custom_snippet_view, 'arch_db', record, html_field) + + @api.model + def _copy_field_terms_translations(self, record_from, name_field_from, record_to, name_field_to): + """ Copy model terms translations from ``record_from.name_field_from`` + to ``record_to.name_field_to`` for all activated languages if the term + in ``record_to.name_field_to`` is untranslated (the term matches the + one in the current language). + + For instance, copy the translations of a + ``product.template.html_description`` field to a ``ir.ui.view.arch_db`` + field. + + The method takes care of read and write access of both records/fields. + """ + record_to.check_access_rights('write') + record_to.check_access_rule('write') + record_to.check_field_access_rights('write', [name_field_to]) + + # This will also implicitly check for `read` access rights + if not record_from[name_field_from] or not record_to[name_field_to]: + return + + field_from = record_from._fields[name_field_from] + field_to = record_to._fields[name_field_to] + error_callable_msg = "'translate' property of field %r is not callable" + if not callable(field_from.translate): + raise ValueError(error_callable_msg % field_from) + if not callable(field_to.translate): + raise ValueError(error_callable_msg % field_to) + if not field_to.store: + raise ValueError("Field %r is not stored" % field_to) + + lang_env = self.env.lang or 'en_US' + langs = set(lang for lang, _ in self.env['res.lang'].get_installed()) + + # 1. Get translations + record_from.flush_model([name_field_from]) + existing_translation_dictionary = field_to.get_translation_dictionary( + record_to[name_field_to], + {lang: record_to.with_context(prefetch_langs=True, lang=lang)[name_field_to] for lang in langs if lang != lang_env} + ) + extra_translation_dictionary = field_from.get_translation_dictionary( + record_from[name_field_from], + {lang: record_from.with_context(prefetch_langs=True, lang=lang)[name_field_from] for lang in langs if lang != lang_env} + ) + for term, extra_translation_values in extra_translation_dictionary.items(): + existing_translation_values = existing_translation_dictionary.setdefault(term, {}) + # Update only default translation values that aren't customized by the user. + for lang, extra_translation in extra_translation_values.items(): + if existing_translation_values.get(lang, term) == term: + existing_translation_values[lang] = extra_translation + translation_dictionary = existing_translation_dictionary + + # The `en_US` jsonb value should always be set, even if english is not + # installed. If we don't do this, the custom snippet `arch_db` will only + # have a `fr_BE` key but no `en_US` key. + langs.add('en_US') + + # 2. Set translations + new_value = { + lang: field_to.translate(lambda term: translation_dictionary.get(term, {}).get(lang), record_to[name_field_to]) + for lang in langs + } + record_to.env.cache.update_raw(record_to, field_to, [new_value], dirty=True) + # Call `write` to trigger compute etc (`modified()`) + record_to[name_field_to] = new_value[lang_env] + + @api.model + def _save_oe_structure_hook(self): + return {} + + @api.model + def _pretty_arch(self, arch): + # TODO: Remove this method in 16.3. + return etree.tostring(arch, encoding='unicode') + + @api.model + def _are_archs_equal(self, arch1, arch2): + # Note that comparing the strings would not be ok as attributes order + # must not be relevant + if arch1.tag != arch2.tag: + return False + if arch1.text != arch2.text: + return False + if arch1.tail != arch2.tail: + return False + if arch1.attrib != arch2.attrib: + return False + if len(arch1) != len(arch2): + return False + return all(self._are_archs_equal(arch1, arch2) for arch1, arch2 in zip(arch1, arch2)) + + @api.model + def _get_allowed_root_attrs(self): + return ['style', 'class', 'target', 'href'] + + def replace_arch_section(self, section_xpath, replacement, replace_tail=False): + # the root of the arch section shouldn't actually be replaced as it's + # not really editable itself, only the content truly is editable. + self.ensure_one() + arch = etree.fromstring(self.arch.encode('utf-8')) + # => get the replacement root + if not section_xpath: + root = arch + else: + # ensure there's only one match + [root] = arch.xpath(section_xpath) + + root.text = replacement.text + + # We need to replace some attrib for styles changes on the root element + for attribute in self._get_allowed_root_attrs(): + if attribute in replacement.attrib: + root.attrib[attribute] = replacement.attrib[attribute] + elif attribute in root.attrib: + del root.attrib[attribute] + + # Note: after a standard edition, the tail *must not* be replaced + if replace_tail: + root.tail = replacement.tail + # replace all children + del root[:] + for child in replacement: + root.append(copy.deepcopy(child)) + + return arch + + @api.model + def to_field_ref(self, el): + # filter out meta-information inserted in the document + attributes = {k: v for k, v in el.attrib.items() + if not k.startswith('data-oe-')} + attributes['t-field'] = el.get('data-oe-expression') + + out = html.html_parser.makeelement(el.tag, attrib=attributes) + out.tail = el.tail + return out + + @api.model + def to_empty_oe_structure(self, el): + out = html.html_parser.makeelement(el.tag, attrib=el.attrib) + out.tail = el.tail + return out + + @api.model + def _set_noupdate(self): + self.sudo().mapped('model_data_id').write({'noupdate': True}) + + def save(self, value, xpath=None): + """ Update a view section. The view section may embed fields to write + + Note that `self` record might not exist when saving an embed field + + :param str xpath: valid xpath to the tag to replace + """ + self.ensure_one() + + arch_section = html.fromstring( + value, parser=html.HTMLParser(encoding='utf-8')) + + if xpath is None: + # value is an embedded field on its own, not a view section + self.save_embedded_field(arch_section) + return + + for el in self.extract_embedded_fields(arch_section): + self.save_embedded_field(el) + + # transform embedded field back to t-field + el.getparent().replace(el, self.to_field_ref(el)) + + for el in self.extract_oe_structures(arch_section): + if self.save_oe_structure(el): + # empty oe_structure in parent view + empty = self.to_empty_oe_structure(el) + if el == arch_section: + arch_section = empty + else: + el.getparent().replace(el, empty) + + new_arch = self.replace_arch_section(xpath, arch_section) + old_arch = etree.fromstring(self.arch.encode('utf-8')) + if not self._are_archs_equal(old_arch, new_arch): + self._set_noupdate() + self.write({'arch': self._pretty_arch(new_arch)}) + self._copy_custom_snippet_translations(self, 'arch_db') + + @api.model + def _view_get_inherited_children(self, view): + if self._context.get('no_primary_children', False): + original_hierarchy = self._context.get('__views_get_original_hierarchy', []) + return view.inherit_children_ids.filtered(lambda extension: extension.mode != 'primary' or extension.id in original_hierarchy) + return view.inherit_children_ids + + @api.model + def _view_obj(self, view_id): + if isinstance(view_id, str): + return self.search([('key', '=', view_id)], limit=1) or self.env.ref(view_id) + elif isinstance(view_id, int): + return self.browse(view_id) + # It can already be a view object when called by '_views_get()' that is calling '_view_obj' + # for it's inherit_children_ids, passing them directly as object record. + return view_id + + # Returns all views (called and inherited) related to a view + # Used by translation mechanism, SEO and optional templates + + @api.model + def _views_get(self, view_id, get_children=True, bundles=False, root=True, visited=None): + """ For a given view ``view_id``, should return: + * the view itself (starting from its top most parent) + * all views inheriting from it, enabled or not + - but not the optional children of a non-enabled child + * all views called from it (via t-call) + :returns recordset of ir.ui.view + """ + try: + view = self._view_obj(view_id) + except ValueError: + _logger.warning("Could not find view object with view_id '%s'", view_id) + return self.env['ir.ui.view'] + + if visited is None: + visited = [] + original_hierarchy = self._context.get('__views_get_original_hierarchy', []) + while root and view.inherit_id: + original_hierarchy.append(view.id) + view = view.inherit_id + + views_to_return = view + + node = etree.fromstring(view.arch) + xpath = "//t[@t-call]" + if bundles: + xpath += "| //t[@t-call-assets]" + for child in node.xpath(xpath): + try: + called_view = self._view_obj(child.get('t-call', child.get('t-call-assets'))) + except ValueError: + continue + if called_view and called_view not in views_to_return and called_view.id not in visited: + views_to_return += self._views_get(called_view, get_children=get_children, bundles=bundles, visited=visited + views_to_return.ids) + + if not get_children: + return views_to_return + + extensions = self._view_get_inherited_children(view) + + # Keep children in a deterministic order regardless of their applicability + for extension in extensions.sorted(key=lambda v: v.id): + # only return optional grandchildren if this child is enabled + if extension.id not in visited: + for ext_view in self._views_get(extension, get_children=extension.active, root=False, visited=visited + views_to_return.ids): + if ext_view not in views_to_return: + views_to_return += ext_view + return views_to_return + + @api.model + def get_related_views(self, key, bundles=False): + """ Get inherit view's informations of the template ``key``. + returns templates info (which can be active or not) + ``bundles=True`` returns also the asset bundles + """ + user_groups = set(self.env.user.groups_id) + new_context = { + **self._context, + 'active_test': False, + } + new_context.pop('lang', None) + View = self.with_context(new_context) + views = View._views_get(key, bundles=bundles) + return views.filtered(lambda v: not v.groups_id or len(user_groups.intersection(v.groups_id))) + + # -------------------------------------------------------------------------- + # Snippet saving + # -------------------------------------------------------------------------- + + @api.model + def _get_snippet_addition_view_key(self, template_key, key): + return '%s.%s' % (template_key, key) + + @api.model + def _snippet_save_view_values_hook(self): + return {} + + def _find_available_name(self, name, used_names): + attempt = 1 + candidate_name = name + while candidate_name in used_names: + attempt += 1 + candidate_name = f"{name} ({attempt})" + return candidate_name + + @api.model + def save_snippet(self, name, arch, template_key, snippet_key, thumbnail_url): + """ + Saves a new snippet arch so that it appears with the given name when + using the given snippets template. + + :param name: the name of the snippet to save + :param arch: the html structure of the snippet to save + :param template_key: the key of the view regrouping all snippets in + which the snippet to save is meant to appear + :param snippet_key: the key (without module part) to identify + the snippet from which the snippet to save originates + :param thumbnail_url: the url of the thumbnail to use when displaying + the snippet to save + """ + app_name = template_key.split('.')[0] + snippet_key = '%s_%s' % (snippet_key, uuid.uuid4().hex) + full_snippet_key = '%s.%s' % (app_name, snippet_key) + + # find available name + current_website = self.env['website'].browse(self._context.get('website_id')) + website_domain = current_website.website_domain() + used_names = self.search(expression.AND([ + [('name', '=like', '%s%%' % name)], website_domain + ])).mapped('name') + name = self._find_available_name(name, used_names) + + # html to xml to add '/' at the end of self closing tags like br, ... + arch_tree = html.fromstring(arch) + attributes = self._get_cleaned_non_editing_attributes(arch_tree.attrib.items()) + for attr in arch_tree.attrib: + if attr in attributes: + arch_tree.attrib[attr] = attributes[attr] + else: + del arch_tree.attrib[attr] + xml_arch = etree.tostring(arch_tree, encoding='utf-8') + new_snippet_view_values = { + 'name': name, + 'key': full_snippet_key, + 'type': 'qweb', + 'arch': xml_arch, + } + new_snippet_view_values.update(self._snippet_save_view_values_hook()) + custom_snippet_view = self.create(new_snippet_view_values) + model = self._context.get('model') + field = self._context.get('field') + if field == 'arch': + # Special case for `arch` which is a kind of related (through a + # compute) to `arch_db` but which is hosting XML/HTML content while + # being a char field.. Which is then messing around with the + # `get_translation_dictionary` call, returning XML instead of + # strings + field = 'arch_db' + res_id = self._context.get('resId') + if model and field and res_id: + self._copy_field_terms_translations( + self.env[model].browse(int(res_id)), + field, + custom_snippet_view, + 'arch_db', + ) + + custom_section = self.search([('key', '=', template_key)]) + snippet_addition_view_values = { + 'name': name + ' Block', + 'key': self._get_snippet_addition_view_key(template_key, snippet_key), + 'inherit_id': custom_section.id, + 'type': 'qweb', + 'arch': """ + + + + + + + + + """ % (template_key, full_snippet_key, thumbnail_url), + } + snippet_addition_view_values.update(self._snippet_save_view_values_hook()) + self.create(snippet_addition_view_values) + + @api.model + def rename_snippet(self, name, view_id, template_key): + snippet_view = self.browse(view_id) + key = snippet_view.key.split('.')[1] + custom_key = self._get_snippet_addition_view_key(template_key, key) + snippet_addition_view = self.search([('key', '=', custom_key)]) + if snippet_addition_view: + snippet_addition_view.name = name + ' Block' + snippet_view.name = name + + @api.model + def delete_snippet(self, view_id, template_key): + snippet_view = self.browse(view_id) + key = snippet_view.key.split('.')[1] + custom_key = self._get_snippet_addition_view_key(template_key, key) + snippet_addition_view = self.search([('key', '=', custom_key)]) + (snippet_addition_view | snippet_view).unlink() diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_websocket.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_websocket.py new file mode 100644 index 0000000..a374890 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/ir_websocket.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import re + +from odoo import models +from odoo.exceptions import AccessDenied + + +class IrWebsocket(models.AbstractModel): + _inherit = 'ir.websocket' + + def _build_bus_channel_list(self, channels): + if self.env.uid: + # Do not alter original list. + channels = list(channels) + for channel in channels: + if isinstance(channel, str): + match = re.match(r'editor_collaboration:(\w+(?:\.\w+)*):(\w+):(\d+)', channel) + if match: + model_name = match[1] + field_name = match[2] + res_id = int(match[3]) + + # Verify access to the edition channel. + if not self.env.user._is_internal(): + raise AccessDenied() + + document = self.env[model_name].browse([res_id]) + if not document.exists(): + continue + + document.check_access_rights('read') + document.check_field_access_rights('read', [field_name]) + document.check_access_rule('read') + document.check_access_rights('write') + document.check_field_access_rights('write', [field_name]) + document.check_access_rule('write') + + channels.append((self.env.registry.db_name, 'editor_collaboration', model_name, field_name, res_id)) + return super()._build_bus_channel_list(channels) diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/models.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/models.py new file mode 100644 index 0000000..c010ad5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/models.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from hashlib import sha256 + +from odoo import api, models + + +class Base(models.AbstractModel): + _inherit = 'base' + + @api.model + def _get_view_field_attributes(self): + keys = super()._get_view_field_attributes() + keys.append('sanitize') + keys.append('sanitize_tags') + return keys + + +class BaseModel(models.AbstractModel): + _inherit = 'base' + + def update_field_translations_sha(self, fname, translations): + field = self._fields[fname] + if callable(field.translate): + for translation in translations.values(): + for key, value in translation.items(): + translation[key] = field.translate.term_converter(value) + return self._update_field_translations(fname, translations, lambda old_term: sha256(old_term.encode()).hexdigest()) diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/models/test_models.py b/odoo-bringout-oca-ocb-web_editor/web_editor/models/test_models.py new file mode 100644 index 0000000..282b703 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/models/test_models.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, fields + + +class ConverterTest(models.Model): + _name = 'web_editor.converter.test' + _description = 'Web Editor Converter Test' + + # disable translation export for those brilliant field labels and values + _translate = False + + char = fields.Char() + integer = fields.Integer() + float = fields.Float() + numeric = fields.Float(digits=(16, 2)) + many2one = fields.Many2one('web_editor.converter.test.sub') + binary = fields.Binary(attachment=False) + date = fields.Date() + datetime = fields.Datetime() + selection_str = fields.Selection([ + ('A', "Qu'il n'est pas arrivé à Toronto"), + ('B', "Qu'il était supposé arriver à Toronto"), + ('C', "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?"), + ('D', "La réponse D"), + ], string=u"Lorsqu'un pancake prend l'avion à destination de Toronto et " + u"qu'il fait une escale technique à St Claude, on dit:") + html = fields.Html() + text = fields.Text() + + +class ConverterTestSub(models.Model): + _name = 'web_editor.converter.test.sub' + _description = 'Web Editor Converter Subtest' + + name = fields.Char() diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/security/ir.model.access.csv b/odoo-bringout-oca-ocb-web_editor/web_editor/security/ir.model.access.csv new file mode 100644 index 0000000..a02dd5f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_web_editor_converter_test,access_web_editor_converter_test,model_web_editor_converter_test,,1,1,1,1 +access_web_editor_converter_test_sub,access_web_editor_converter_test_sub,model_web_editor_converter_test_sub,,1,1,1,1 diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_1.svg new file mode 100644 index 0000000..2d6e77b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_1.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_2.svg new file mode 100644 index 0000000..472c2d2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_2.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_3.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_3.svg new file mode 100644 index 0000000..c39ed07 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_organic_3.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_1.svg new file mode 100644 index 0000000..ccfe894 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_1.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_2.svg new file mode 100644 index 0000000..bb3265a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_2.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_3.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_3.svg new file mode 100644 index 0000000..3c5d1d7 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_3.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_4.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_4.svg new file mode 100644 index 0000000..17c8763 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_4.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_5.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_5.svg new file mode 100644 index 0000000..9d7337e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_5.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_6.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_6.svg new file mode 100644 index 0000000..1629f74 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_6.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_1.svg new file mode 100644 index 0000000..15b178d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_1.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_2.svg new file mode 100644 index 0000000..6b38d2d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/basic/bsc_square_rounded_2.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.html b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.html new file mode 100644 index 0000000..cf93a00 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.html @@ -0,0 +1,17 @@ + + + + + SVGs to Clip Path converter + + +

This tool is made to help designers import shapes that have a clip path component.

+

The shape must have at least one path set with an id="filterPath" and a maximum of 5 background colors

+ + +
+

Your download link will appear here

+
+ + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.js new file mode 100644 index 0000000..2fb4ca6 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/convert-to-percentages.js @@ -0,0 +1,159 @@ +// The goal of this script is to have a shape ready for use with the +// "Shape on Image" feature of Odoo. +// Therefor we need to rearrange the file a little. +// Marks which axis each parameter of a command belongs to, as well as whether +// It's a positional measurement (x/y), a distance (dx/dy) or none (angles, flags) +const commandAxes = { + 'M': ['x', 'y'], + 'm': ['dx', 'dy'], + 'L': ['x', 'y'], + 'l': ['dx', 'dy'], + 'H': ['x'], + 'h': ['dx'], + 'V': ['y'], + 'v': ['dy'], + 'Z': [], + 'z': [], + 'C': ['x', 'y', 'x', 'y', 'x', 'y'], + 'c': ['dx', 'dy', 'dx', 'dy', 'dx', 'dy'], + 'S': ['x', 'y', 'x', 'y'], + 's': ['dx', 'dy', 'dx', 'dy'], + 'Q': ['x', 'y', 'x', 'y'], + 'q': ['dx', 'dy', 'dx', 'dy'], + 'T': ['x', 'y'], + 't': ['dx', 'dy'], + 'A': ['dx', 'dy', 'none', 'none', 'none', 'x', 'y'], + 'a': ['dx', 'dy', 'none', 'none', 'none', 'dx', 'dy'], +}; + +const toUserSpace = (x, y, width, height, precision = 4) => ({ + x: val => +((parseFloat(val) - x) / width).toFixed(precision), + dx: val => +(parseFloat(val) / width).toFixed(precision), + y: val => +((parseFloat(val) - y) / height).toFixed(precision), + dy: val => +(parseFloat(val) / height).toFixed(precision), + none: val => val, +}); + +const filePicker = document.getElementById('svgPicker'); +const submitButton = document.getElementById('submitButton'); +submitButton.addEventListener('click', async (ev) => { + if (!filePicker.files.length > 0) { + alert('Please select files using the file picker first'); + return; + } + Array.from(filePicker.files).forEach(async file => { + const fileReader = new FileReader(); + const readerPromise = new Promise((resolve, reject) => { + fileReader.addEventListener('load', () => resolve(fileReader.result)); + fileReader.addEventListener('error', () => reject(fileReader.error)); + }); + fileReader.readAsText(file, 'utf-8'); + const svgString = await readerPromise; + const parser = new DOMParser(); + const svg = parser.parseFromString(svgString, 'image/svg+xml'); + const path = svg.getElementById('filterPath'); + const svgDocumentElement = svg.documentElement; + // Some SVGs come without xlink + svgDocumentElement.setAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink'); + // We add the SVG to the body so we can take measurements of its + // original size + document.body.appendChild(svg.documentElement); + const { x, y, width, height } = svgDocumentElement.getBBox(); + const scalers = toUserSpace(x, y, width, height); + + // Converts the clipPath in values between 0 and 1 so we can use + // object bounding box as clip path units. It will make the clip path + // always adapt to the size of the picture. + const commands = path.getAttribute('d').match(/[a-z][^a-z]*/ig).map(c => { + return c.split(/[, ]|(?=-)|(?<=[a-z])(?=[0-9])/i).filter(part => !!part.length); + }); + const relSpaceCommands = commands.map(([command, ...nums]) => { + const axes = commandAxes[command]; + const relSpaceNums = nums.map((n, i) => { + const scaler = scalers[axes[i % axes.length]]; + return scaler(n); + }); + return `${command}${relSpaceNums.join(',')}`.replace(/,-/g, '-'); + }); + path.setAttribute('d', relSpaceCommands.join('')); + path.removeAttribute('fill'); + svgDocumentElement.removeAttribute('viewBox'); + + let defsEl = svgDocumentElement.querySelector('defs'); + if (!defsEl) { + defsEl = svg.createElementNS('http://www.w3.org/2000/svg', 'defs'); + svgDocumentElement.appendChild(defsEl); + } + + let clipPathEl = svgDocumentElement.querySelector('clipPath'); + if (!clipPathEl) { + clipPathEl = svg.createElementNS('http://www.w3.org/2000/svg', 'clipPath'); + clipPathEl.setAttribute('id', 'clip-path'); + defsEl.appendChild(clipPathEl); + } + + clipPathEl.setAttribute('clipPathUnits', 'objectBoundingBox'); + const backgroundEls = svgDocumentElement.getElementsByClassName('background'); + // We set the BG elements into their own svg so that when the total + // space gets stretched out, so does the backgrounds elements + Array.from(backgroundEls).forEach(el => { + const bgBbox = el.getBBox(); + const svgBackground = document.createElement('svg'); + const strokeWidth = el.getAttribute('stroke-width'); + // If the background has a strokeWidth, the viewBox need to take it + // into account + if (strokeWidth) { + const adj = parseFloat(strokeWidth) / 2; + svgBackground.setAttributeNS('http://www.w3.org/2000/svg', 'viewBox', + `${bgBbox.x - adj} ${bgBbox.y - adj} ${bgBbox.width + (adj * 2)} ${bgBbox.height + (adj * 2)}`); + } else { + svgBackground.setAttributeNS('http://www.w3.org/2000/svg', 'viewBox', `${bgBbox.x} ${bgBbox.y} ${bgBbox.width} ${bgBbox.height}`); + } + svgBackground.setAttributeNS('http://www.w3.org/2000/svg', 'preserveAspectRatio', 'none'); + svgBackground.appendChild(el); + svgDocumentElement.appendChild(svgBackground); + }); + + defsEl.appendChild(path); + // Setting the clip path for use and for preview + const useClipPathEl = document.createElementNS('http://www.w3.org/2000/svg', 'use'); + useClipPathEl.setAttributeNS('http://www.w3.org/1999/xlink', 'href', '#filterPath'); + useClipPathEl.setAttribute('fill', 'none'); + clipPathEl.appendChild(useClipPathEl); + + const svgPreviewEl = svg.createElementNS('http://www.w3.org/2000/svg', 'svg'); + svgPreviewEl.setAttributeNS('http://www.w3.org/2000/svg', 'viewBox', '0 0 1 1'); + svgPreviewEl.setAttribute('width', '800'); + svgPreviewEl.setAttribute('height', '600'); + svgPreviewEl.setAttribute('id', 'preview'); + svgPreviewEl.setAttributeNS('http://www.w3.org/2000/svg', 'preserveAspectRatio', 'none'); + const previewUseEl = useClipPathEl.cloneNode(true); + previewUseEl.setAttribute('fill', 'darkgrey'); + svgPreviewEl.appendChild(previewUseEl); + svgDocumentElement.appendChild(svgPreviewEl); + + const imageEl = document.createElement('image'); + imageEl.setAttribute('xlink:href', ''); + imageEl.setAttribute('clip-path', 'url(#clip-path)'); + svgDocumentElement.appendChild(imageEl); + // Give a default size to the SVGs for an easier preview on disk + svgDocumentElement.setAttribute('width', '800'); + svgDocumentElement.setAttribute('height', '600'); + + const outFile = new File([svgDocumentElement.outerHTML], filePicker.files[0].name, { type: 'image/svg+xml' }); + const outFileReader = new FileReader(); + const outReaderPromise = new Promise((resolve, reject) => { + outFileReader.addEventListener('load', () => resolve(outFileReader.result)); + outFileReader.addEventListener('error', () => reject(outFileReader.error)); + }); + outFileReader.readAsDataURL(outFile); + const dataURL = await outReaderPromise; + + const downloadLinkEl = document.createElement('a'); + downloadLinkEl.href = dataURL; + downloadLinkEl.innerText = 'Download'; + downloadLinkEl.setAttribute('download', file.name); + downloadLinkEl.classList.add('dl_link'); + document.getElementById('downloadArea').appendChild(downloadLinkEl); + }); +}); diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_01.svg new file mode 100644 index 0000000..f88dffb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_01.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_02.svg new file mode 100644 index 0000000..58e512b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_02.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_03.svg new file mode 100644 index 0000000..b430618 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/browser_03.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_01.svg new file mode 100644 index 0000000..32c1406 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_01.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_02.svg new file mode 100644 index 0000000..2aedd8a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_landscape_02.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_01.svg new file mode 100644 index 0000000..0b05468 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_01.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_02.svg new file mode 100644 index 0000000..d28807a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_3d_portrait_02.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_landscape.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_landscape.svg new file mode 100644 index 0000000..5a40889 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_landscape.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_portrait.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_portrait.svg new file mode 100644 index 0000000..7d40258 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/galaxy_front_portrait.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_01.svg new file mode 100644 index 0000000..77a3a0d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_01.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_02.svg new file mode 100644 index 0000000..a7bf967 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_3d_02.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_front.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_front.svg new file mode 100644 index 0000000..94015cd --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/imac_front.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_01.svg new file mode 100644 index 0000000..42d1802 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_01.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_02.svg new file mode 100644 index 0000000..89835c3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_landscape_02.svg @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_01.svg new file mode 100644 index 0000000..8757038 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_01.svg @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_02.svg new file mode 100644 index 0000000..e3ac943 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_3d_portrait_02.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_landscape.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_landscape.svg new file mode 100644 index 0000000..9f43849 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_landscape.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_portrait.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_portrait.svg new file mode 100644 index 0000000..72e3917 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/ipad_front_portrait.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_01.svg new file mode 100644 index 0000000..17465d8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_01.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_02.svg new file mode 100644 index 0000000..f585761 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_landscape_02.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_01.svg new file mode 100644 index 0000000..327e3db --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_01.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_02.svg new file mode 100644 index 0000000..342de99 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_3d_portrait_02.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_landscape.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_landscape.svg new file mode 100644 index 0000000..b095ef0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_landscape.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_portrait.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_portrait.svg new file mode 100644 index 0000000..230c80f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/iphone_front_portrait.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_01.svg new file mode 100644 index 0000000..4e79dfb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_01.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_02.svg new file mode 100644 index 0000000..f57442c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_3d_02.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_front.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_front.svg new file mode 100644 index 0000000..4a81df2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/devices/macbook_front.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_1.svg new file mode 100644 index 0000000..ab8eae8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_1.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_2.svg new file mode 100644 index 0000000..afd9387 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_planets_2.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_1.svg new file mode 100644 index 0000000..7556a4f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_1.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_2.svg new file mode 100644 index 0000000..f0cc8cd --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_2.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_3.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_3.svg new file mode 100644 index 0000000..2321c73 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_primary_3.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_1.svg new file mode 100644 index 0000000..105162d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_1.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_2.svg new file mode 100644 index 0000000..aa679f2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_2.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_3.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_3.svg new file mode 100644 index 0000000..358c75a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_3.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_4.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_4.svg new file mode 100644 index 0000000..2a5758f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/float/flt_square_4.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_square_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_square_1.svg new file mode 100644 index 0000000..5764488 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_square_1.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_star.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_star.svg new file mode 100644 index 0000000..6017795 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_star.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_sun.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_sun.svg new file mode 100644 index 0000000..fbe1876 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_sun.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_triangle.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_triangle.svg new file mode 100644 index 0000000..e0c5283 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/line_triangle.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_1.svg new file mode 100644 index 0000000..80f30df --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_1.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_2.svg new file mode 100644 index 0000000..96354a0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_2.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_3.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_3.svg new file mode 100644 index 0000000..51eedb2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/little_lines_3.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/organic_1_line.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/organic_1_line.svg new file mode 100644 index 0000000..25e1115 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/organic_1_line.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_2_line.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_2_line.svg new file mode 100644 index 0000000..c96baf5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_2_line.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_3_pattern_line.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_3_pattern_line.svg new file mode 100644 index 0000000..bbd572b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/line/oval_3_pattern_line.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_2_pattern_dot.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_2_pattern_dot.svg new file mode 100644 index 0000000..b47013d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_2_pattern_dot.svg @@ -0,0 +1,662 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_3_pattern_cross.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_3_pattern_cross.svg new file mode 100644 index 0000000..34c84c4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_3_pattern_cross.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_4_pattern_caps.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_4_pattern_caps.svg new file mode 100644 index 0000000..9bba130 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/organic_4_pattern_caps.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_labyrinth.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_labyrinth.svg new file mode 100644 index 0000000..8c4b18f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_labyrinth.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_points_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_points_1.svg new file mode 100644 index 0000000..8d2fe37 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_points_1.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_1.svg new file mode 100644 index 0000000..babae1e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_1.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_2.svg new file mode 100644 index 0000000..2c1b6c5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_2.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_3.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_3.svg new file mode 100644 index 0000000..a5fca9f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_3.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_4.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_4.svg new file mode 100644 index 0000000..c475277 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/pattern/pattern_waves_4.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_1_solid_rd.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_1_solid_rd.svg new file mode 100644 index 0000000..170d6dc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_1_solid_rd.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_2_solid_str.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_2_solid_str.svg new file mode 100644 index 0000000..dc5fd10 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_2_solid_str.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_3_solid_rd.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_3_solid_rd.svg new file mode 100644 index 0000000..c6bc3ee --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/blob_3_solid_rd.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/oval_1_solid_rd.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/oval_1_solid_rd.svg new file mode 100644 index 0000000..6bdbacb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/oval_1_solid_rd.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_4.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_4.svg new file mode 100644 index 0000000..c7b3fb9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_4.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_1.svg new file mode 100644 index 0000000..162c24d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_1.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_2.svg new file mode 100644 index 0000000..7bcd52c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_blob_shadow_2.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_1.svg new file mode 100644 index 0000000..2caa6b3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_1.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_2.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_2.svg new file mode 100644 index 0000000..6fdb10a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_2.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_organic_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_organic_1.svg new file mode 100644 index 0000000..4b92cd8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/solid/sld_square_organic_1.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_circuit_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_circuit_1.svg new file mode 100644 index 0000000..6d49626 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_circuit_1.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_filter_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_filter_1.svg new file mode 100644 index 0000000..cc2a278 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_filter_1.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_flag_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_flag_1.svg new file mode 100644 index 0000000..a681775 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_flag_1.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_organics_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_organics_1.svg new file mode 100644 index 0000000..d75bfbc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_organics_1.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_rain_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_rain_1.svg new file mode 100644 index 0000000..69037eb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_rain_1.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_snow_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_snow_1.svg new file mode 100644 index 0000000..f492449 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_snow_1.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_speed_1.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_speed_1.svg new file mode 100644 index 0000000..f7ca285 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/image_shapes/special/spl_speed_1.svg @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/DOMPurify.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/DOMPurify.js new file mode 100644 index 0000000..0583d9b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/DOMPurify.js @@ -0,0 +1,1376 @@ +/*! @license DOMPurify 2.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.1/LICENSE */ + +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = global || self, global.DOMPurify = factory()); +}(this, function () { 'use strict'; + + function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } + + var hasOwnProperty = Object.hasOwnProperty, + setPrototypeOf = Object.setPrototypeOf, + isFrozen = Object.isFrozen, + getPrototypeOf = Object.getPrototypeOf, + getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; + var freeze = Object.freeze, + seal = Object.seal, + create = Object.create; // eslint-disable-line import/no-mutable-exports + + var _ref = typeof Reflect !== 'undefined' && Reflect, + apply = _ref.apply, + construct = _ref.construct; + + if (!apply) { + apply = function apply(fun, thisValue, args) { + return fun.apply(thisValue, args); + }; + } + + if (!freeze) { + freeze = function freeze(x) { + return x; + }; + } + + if (!seal) { + seal = function seal(x) { + return x; + }; + } + + if (!construct) { + construct = function construct(Func, args) { + return new (Function.prototype.bind.apply(Func, [null].concat(_toConsumableArray(args))))(); + }; + } + + var arrayForEach = unapply(Array.prototype.forEach); + var arrayPop = unapply(Array.prototype.pop); + var arrayPush = unapply(Array.prototype.push); + + var stringToLowerCase = unapply(String.prototype.toLowerCase); + var stringMatch = unapply(String.prototype.match); + var stringReplace = unapply(String.prototype.replace); + var stringIndexOf = unapply(String.prototype.indexOf); + var stringTrim = unapply(String.prototype.trim); + + var regExpTest = unapply(RegExp.prototype.test); + + var typeErrorCreate = unconstruct(TypeError); + + function unapply(func) { + return function (thisArg) { + for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + args[_key - 1] = arguments[_key]; + } + + return apply(func, thisArg, args); + }; + } + + function unconstruct(func) { + return function () { + for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { + args[_key2] = arguments[_key2]; + } + + return construct(func, args); + }; + } + + /* Add properties to a lookup table */ + function addToSet(set, array) { + if (setPrototypeOf) { + // Make 'in' and truthy checks like Boolean(set.constructor) + // independent of any properties defined on Object.prototype. + // Prevent prototype setters from intercepting set as a this value. + setPrototypeOf(set, null); + } + + var l = array.length; + while (l--) { + var element = array[l]; + if (typeof element === 'string') { + var lcElement = stringToLowerCase(element); + if (lcElement !== element) { + // Config presets (e.g. tags.js, attrs.js) are immutable. + if (!isFrozen(array)) { + array[l] = lcElement; + } + + element = lcElement; + } + } + + set[element] = true; + } + + return set; + } + + /* Shallow clone an object */ + function clone(object) { + var newObject = create(null); + + var property = void 0; + for (property in object) { + if (apply(hasOwnProperty, object, [property])) { + newObject[property] = object[property]; + } + } + + return newObject; + } + + /* IE10 doesn't support __lookupGetter__ so lets' + * simulate it. It also automatically checks + * if the prop is function or getter and behaves + * accordingly. */ + function lookupGetter(object, prop) { + while (object !== null) { + var desc = getOwnPropertyDescriptor(object, prop); + if (desc) { + if (desc.get) { + return unapply(desc.get); + } + + if (typeof desc.value === 'function') { + return unapply(desc.value); + } + } + + object = getPrototypeOf(object); + } + + function fallbackValue(element) { + console.warn('fallback value for', element); + return null; + } + + return fallbackValue; + } + + var html = freeze(['a', 'abbr', 'acronym', 'address', 'area', 'article', 'aside', 'audio', 'b', 'bdi', 'bdo', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'dfn', 'dialog', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'img', 'input', 'ins', 'kbd', 'label', 'legend', 'li', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meter', 'nav', 'nobr', 'ol', 'optgroup', 'option', 'output', 'p', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'section', 'select', 'shadow', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr']); + + // SVG + var svg = freeze(['svg', 'a', 'altglyph', 'altglyphdef', 'altglyphitem', 'animatecolor', 'animatemotion', 'animatetransform', 'circle', 'clippath', 'defs', 'desc', 'ellipse', 'filter', 'font', 'g', 'glyph', 'glyphref', 'hkern', 'image', 'line', 'lineargradient', 'marker', 'mask', 'metadata', 'mpath', 'path', 'pattern', 'polygon', 'polyline', 'radialgradient', 'rect', 'stop', 'style', 'switch', 'symbol', 'text', 'textpath', 'title', 'tref', 'tspan', 'view', 'vkern']); + + var svgFilters = freeze(['feBlend', 'feColorMatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feDistantLight', 'feFlood', 'feFuncA', 'feFuncB', 'feFuncG', 'feFuncR', 'feGaussianBlur', 'feMerge', 'feMergeNode', 'feMorphology', 'feOffset', 'fePointLight', 'feSpecularLighting', 'feSpotLight', 'feTile', 'feTurbulence']); + + // List of SVG elements that are disallowed by default. + // We still need to know them so that we can do namespace + // checks properly in case one wants to add them to + // allow-list. + var svgDisallowed = freeze(['animate', 'color-profile', 'cursor', 'discard', 'fedropshadow', 'feimage', 'font-face', 'font-face-format', 'font-face-name', 'font-face-src', 'font-face-uri', 'foreignobject', 'hatch', 'hatchpath', 'mesh', 'meshgradient', 'meshpatch', 'meshrow', 'missing-glyph', 'script', 'set', 'solidcolor', 'unknown', 'use']); + + var mathMl = freeze(['math', 'menclose', 'merror', 'mfenced', 'mfrac', 'mglyph', 'mi', 'mlabeledtr', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', 'mphantom', 'mroot', 'mrow', 'ms', 'mspace', 'msqrt', 'mstyle', 'msub', 'msup', 'msubsup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', 'munderover']); + + // Similarly to SVG, we want to know all MathML elements, + // even those that we disallow by default. + var mathMlDisallowed = freeze(['maction', 'maligngroup', 'malignmark', 'mlongdiv', 'mscarries', 'mscarry', 'msgroup', 'mstack', 'msline', 'msrow', 'semantics', 'annotation', 'annotation-xml', 'mprescripts', 'none']); + + var text = freeze(['#text']); + + var html$1 = freeze(['accept', 'action', 'align', 'alt', 'autocapitalize', 'autocomplete', 'autopictureinpicture', 'autoplay', 'background', 'bgcolor', 'border', 'capture', 'cellpadding', 'cellspacing', 'checked', 'cite', 'class', 'clear', 'color', 'cols', 'colspan', 'contenteditable', 'controls', 'controlslist', 'coords', 'crossorigin', 'datetime', 'decoding', 'default', 'dir', 'disabled', 'disablepictureinpicture', 'disableremoteplayback', 'download', 'draggable', 'enctype', 'enterkeyhint', 'face', 'for', 'headers', 'height', 'hidden', 'high', 'href', 'hreflang', 'id', 'inputmode', 'integrity', 'ismap', 'kind', 'label', 'lang', 'list', 'loading', 'loop', 'low', 'max', 'maxlength', 'media', 'method', 'min', 'minlength', 'multiple', 'muted', 'name', 'noshade', 'novalidate', 'nowrap', 'open', 'optimum', 'pattern', 'placeholder', 'playsinline', 'poster', 'preload', 'pubdate', 'radiogroup', 'readonly', 'rel', 'required', 'rev', 'reversed', 'role', 'rows', 'rowspan', 'spellcheck', 'scope', 'selected', 'shape', 'size', 'sizes', 'span', 'srclang', 'start', 'src', 'srcset', 'step', 'style', 'summary', 'tabindex', 'title', 'translate', 'type', 'usemap', 'valign', 'value', 'width', 'xmlns', 'slot']); + + var svg$1 = freeze(['accent-height', 'accumulate', 'additive', 'alignment-baseline', 'ascent', 'attributename', 'attributetype', 'azimuth', 'basefrequency', 'baseline-shift', 'begin', 'bias', 'by', 'class', 'clip', 'clippathunits', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cx', 'cy', 'd', 'dx', 'dy', 'diffuseconstant', 'direction', 'display', 'divisor', 'dur', 'edgemode', 'elevation', 'end', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'filterunits', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'fx', 'fy', 'g1', 'g2', 'glyph-name', 'glyphref', 'gradientunits', 'gradienttransform', 'height', 'href', 'id', 'image-rendering', 'in', 'in2', 'k', 'k1', 'k2', 'k3', 'k4', 'kerning', 'keypoints', 'keysplines', 'keytimes', 'lang', 'lengthadjust', 'letter-spacing', 'kernelmatrix', 'kernelunitlength', 'lighting-color', 'local', 'marker-end', 'marker-mid', 'marker-start', 'markerheight', 'markerunits', 'markerwidth', 'maskcontentunits', 'maskunits', 'max', 'mask', 'media', 'method', 'mode', 'min', 'name', 'numoctaves', 'offset', 'operator', 'opacity', 'order', 'orient', 'orientation', 'origin', 'overflow', 'paint-order', 'path', 'pathlength', 'patterncontentunits', 'patterntransform', 'patternunits', 'points', 'preservealpha', 'preserveaspectratio', 'primitiveunits', 'r', 'rx', 'ry', 'radius', 'refx', 'refy', 'repeatcount', 'repeatdur', 'restart', 'result', 'rotate', 'scale', 'seed', 'shape-rendering', 'specularconstant', 'specularexponent', 'spreadmethod', 'startoffset', 'stddeviation', 'stitchtiles', 'stop-color', 'stop-opacity', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke', 'stroke-width', 'style', 'surfacescale', 'systemlanguage', 'tabindex', 'targetx', 'targety', 'transform', 'text-anchor', 'text-decoration', 'text-rendering', 'textlength', 'type', 'u1', 'u2', 'unicode', 'values', 'viewbox', 'visibility', 'version', 'vert-adv-y', 'vert-origin-x', 'vert-origin-y', 'width', 'word-spacing', 'wrap', 'writing-mode', 'xchannelselector', 'ychannelselector', 'x', 'x1', 'x2', 'xmlns', 'y', 'y1', 'y2', 'z', 'zoomandpan']); + + var mathMl$1 = freeze(['accent', 'accentunder', 'align', 'bevelled', 'close', 'columnsalign', 'columnlines', 'columnspan', 'denomalign', 'depth', 'dir', 'display', 'displaystyle', 'encoding', 'fence', 'frame', 'height', 'href', 'id', 'largeop', 'length', 'linethickness', 'lspace', 'lquote', 'mathbackground', 'mathcolor', 'mathsize', 'mathvariant', 'maxsize', 'minsize', 'movablelimits', 'notation', 'numalign', 'open', 'rowalign', 'rowlines', 'rowspacing', 'rowspan', 'rspace', 'rquote', 'scriptlevel', 'scriptminsize', 'scriptsizemultiplier', 'selection', 'separator', 'separators', 'stretchy', 'subscriptshift', 'supscriptshift', 'symmetric', 'voffset', 'width', 'xmlns']); + + var xml = freeze(['xlink:href', 'xml:id', 'xlink:title', 'xml:space', 'xmlns:xlink']); + + // eslint-disable-next-line unicorn/better-regex + var MUSTACHE_EXPR = seal(/\{\{[\s\S]*|[\s\S]*\}\}/gm); // Specify template detection regex for SAFE_FOR_TEMPLATES mode + var ERB_EXPR = seal(/<%[\s\S]*|[\s\S]*%>/gm); + var DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]/); // eslint-disable-line no-useless-escape + var ARIA_ATTR = seal(/^aria-[\-\w]+$/); // eslint-disable-line no-useless-escape + var IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i // eslint-disable-line no-useless-escape + ); + var IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i); + var ATTR_WHITESPACE = seal(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g // eslint-disable-line no-control-regex + ); + + var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + + function _toConsumableArray$1(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } + + var getGlobal = function getGlobal() { + return typeof window === 'undefined' ? null : window; + }; + + /** + * Creates a no-op policy for internal use only. + * Don't export this function outside this module! + * @param {?TrustedTypePolicyFactory} trustedTypes The policy factory. + * @param {Document} document The document object (to determine policy name suffix) + * @return {?TrustedTypePolicy} The policy created (or null, if Trusted Types + * are not supported). + */ + var _createTrustedTypesPolicy = function _createTrustedTypesPolicy(trustedTypes, document) { + if ((typeof trustedTypes === 'undefined' ? 'undefined' : _typeof(trustedTypes)) !== 'object' || typeof trustedTypes.createPolicy !== 'function') { + return null; + } + + // Allow the callers to control the unique policy name + // by adding a data-tt-policy-suffix to the script element with the DOMPurify. + // Policy creation with duplicate names throws in Trusted Types. + var suffix = null; + var ATTR_NAME = 'data-tt-policy-suffix'; + if (document.currentScript && document.currentScript.hasAttribute(ATTR_NAME)) { + suffix = document.currentScript.getAttribute(ATTR_NAME); + } + + var policyName = 'dompurify' + (suffix ? '#' + suffix : ''); + + try { + return trustedTypes.createPolicy(policyName, { + createHTML: function createHTML(html$$1) { + return html$$1; + } + }); + } catch (_) { + // Policy creation failed (most likely another DOMPurify script has + // already run). Skip creating the policy, as this will only cause errors + // if TT are enforced. + console.warn('TrustedTypes policy ' + policyName + ' could not be created.'); + return null; + } + }; + + function createDOMPurify() { + var window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal(); + + var DOMPurify = function DOMPurify(root) { + return createDOMPurify(root); + }; + + /** + * Version label, exposed for easier checks + * if DOMPurify is up to date or not + */ + DOMPurify.version = '2.3.1'; + + /** + * Array of elements that DOMPurify removed during sanitation. + * Empty if nothing was removed. + */ + DOMPurify.removed = []; + + if (!window || !window.document || window.document.nodeType !== 9) { + // Not running in a browser, provide a factory function + // so that you can pass your own Window + DOMPurify.isSupported = false; + + return DOMPurify; + } + + var originalDocument = window.document; + + var document = window.document; + var DocumentFragment = window.DocumentFragment, + HTMLTemplateElement = window.HTMLTemplateElement, + Node = window.Node, + Element = window.Element, + NodeFilter = window.NodeFilter, + _window$NamedNodeMap = window.NamedNodeMap, + NamedNodeMap = _window$NamedNodeMap === undefined ? window.NamedNodeMap || window.MozNamedAttrMap : _window$NamedNodeMap, + Text = window.Text, + Comment = window.Comment, + DOMParser = window.DOMParser, + trustedTypes = window.trustedTypes; + + + var ElementPrototype = Element.prototype; + + var cloneNode = lookupGetter(ElementPrototype, 'cloneNode'); + var getNextSibling = lookupGetter(ElementPrototype, 'nextSibling'); + var getChildNodes = lookupGetter(ElementPrototype, 'childNodes'); + var getParentNode = lookupGetter(ElementPrototype, 'parentNode'); + + // As per issue #47, the web-components registry is inherited by a + // new document created via createHTMLDocument. As per the spec + // (http://w3c.github.io/webcomponents/spec/custom/#creating-and-passing-registries) + // a new empty registry is used when creating a template contents owner + // document, so we use that as our parent document to ensure nothing + // is inherited. + if (typeof HTMLTemplateElement === 'function') { + var template = document.createElement('template'); + if (template.content && template.content.ownerDocument) { + document = template.content.ownerDocument; + } + } + + var trustedTypesPolicy = _createTrustedTypesPolicy(trustedTypes, originalDocument); + var emptyHTML = trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML('') : ''; + + var _document = document, + implementation = _document.implementation, + createNodeIterator = _document.createNodeIterator, + createDocumentFragment = _document.createDocumentFragment, + getElementsByTagName = _document.getElementsByTagName; + var importNode = originalDocument.importNode; + + + var documentMode = {}; + try { + documentMode = clone(document).documentMode ? document.documentMode : {}; + } catch (_) {} + + var hooks = {}; + + /** + * Expose whether this browser supports running the full DOMPurify. + */ + DOMPurify.isSupported = typeof getParentNode === 'function' && implementation && typeof implementation.createHTMLDocument !== 'undefined' && documentMode !== 9; + + var MUSTACHE_EXPR$$1 = MUSTACHE_EXPR, + ERB_EXPR$$1 = ERB_EXPR, + DATA_ATTR$$1 = DATA_ATTR, + ARIA_ATTR$$1 = ARIA_ATTR, + IS_SCRIPT_OR_DATA$$1 = IS_SCRIPT_OR_DATA, + ATTR_WHITESPACE$$1 = ATTR_WHITESPACE; + var IS_ALLOWED_URI$$1 = IS_ALLOWED_URI; + + /** + * We consider the elements and attributes below to be safe. Ideally + * don't add any new ones but feel free to remove unwanted ones. + */ + + /* allowed element names */ + + var ALLOWED_TAGS = null; + var DEFAULT_ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray$1(html), _toConsumableArray$1(svg), _toConsumableArray$1(svgFilters), _toConsumableArray$1(mathMl), _toConsumableArray$1(text))); + + /* Allowed attribute names */ + var ALLOWED_ATTR = null; + var DEFAULT_ALLOWED_ATTR = addToSet({}, [].concat(_toConsumableArray$1(html$1), _toConsumableArray$1(svg$1), _toConsumableArray$1(mathMl$1), _toConsumableArray$1(xml))); + + /* Explicitly forbidden tags (overrides ALLOWED_TAGS/ADD_TAGS) */ + var FORBID_TAGS = null; + + /* Explicitly forbidden attributes (overrides ALLOWED_ATTR/ADD_ATTR) */ + var FORBID_ATTR = null; + + /* Decide if ARIA attributes are okay */ + var ALLOW_ARIA_ATTR = true; + + /* Decide if custom data attributes are okay */ + var ALLOW_DATA_ATTR = true; + + /* Decide if unknown protocols are okay */ + var ALLOW_UNKNOWN_PROTOCOLS = false; + + /* Output should be safe for common template engines. + * This means, DOMPurify removes data attributes, mustaches and ERB + */ + var SAFE_FOR_TEMPLATES = false; + + /* Decide if document with ... should be returned */ + var WHOLE_DOCUMENT = false; + + /* Track whether config is already set on this instance of DOMPurify. */ + var SET_CONFIG = false; + + /* Decide if all elements (e.g. style, script) must be children of + * document.body. By default, browsers might move them to document.head */ + var FORCE_BODY = false; + + /* Decide if a DOM `HTMLBodyElement` should be returned, instead of a html + * string (or a TrustedHTML object if Trusted Types are supported). + * If `WHOLE_DOCUMENT` is enabled a `HTMLHtmlElement` will be returned instead + */ + var RETURN_DOM = false; + + /* Decide if a DOM `DocumentFragment` should be returned, instead of a html + * string (or a TrustedHTML object if Trusted Types are supported) */ + var RETURN_DOM_FRAGMENT = false; + + /* If `RETURN_DOM` or `RETURN_DOM_FRAGMENT` is enabled, decide if the returned DOM + * `Node` is imported into the current `Document`. If this flag is not enabled the + * `Node` will belong (its ownerDocument) to a fresh `HTMLDocument`, created by + * DOMPurify. + * + * This defaults to `true` starting DOMPurify 2.2.0. Note that setting it to `false` + * might cause XSS from attacks hidden in closed shadowroots in case the browser + * supports Declarative Shadow: DOM https://web.dev/declarative-shadow-dom/ + */ + var RETURN_DOM_IMPORT = true; + + /* Try to return a Trusted Type object instead of a string, return a string in + * case Trusted Types are not supported */ + var RETURN_TRUSTED_TYPE = false; + + /* Output should be free from DOM clobbering attacks? */ + var SANITIZE_DOM = true; + + /* Keep element content when removing element? */ + var KEEP_CONTENT = true; + + /* If a `Node` is passed to sanitize(), then performs sanitization in-place instead + * of importing it into a new Document and returning a sanitized copy */ + var IN_PLACE = false; + + /* Allow usage of profiles like html, svg and mathMl */ + var USE_PROFILES = {}; + + /* Tags to ignore content of when KEEP_CONTENT is true */ + var FORBID_CONTENTS = null; + var DEFAULT_FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'noscript', 'plaintext', 'script', 'style', 'svg', 'template', 'thead', 'title', 'video', 'xmp']); + + /* Tags that are safe for data: URIs */ + var DATA_URI_TAGS = null; + var DEFAULT_DATA_URI_TAGS = addToSet({}, ['audio', 'video', 'img', 'source', 'image', 'track']); + + /* Attributes safe for values like "javascript:" */ + var URI_SAFE_ATTRIBUTES = null; + var DEFAULT_URI_SAFE_ATTRIBUTES = addToSet({}, ['alt', 'class', 'for', 'id', 'label', 'name', 'pattern', 'placeholder', 'role', 'summary', 'title', 'value', 'style', 'xmlns']); + + var MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML'; + var SVG_NAMESPACE = 'http://www.w3.org/2000/svg'; + var HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml'; + /* Document namespace */ + var NAMESPACE = HTML_NAMESPACE; + var IS_EMPTY_INPUT = false; + + /* Keep a reference to config to pass to hooks */ + var CONFIG = null; + + /* Ideally, do not touch anything below this line */ + /* ______________________________________________ */ + + var formElement = document.createElement('form'); + + /** + * _parseConfig + * + * @param {Object} cfg optional config literal + */ + // eslint-disable-next-line complexity + var _parseConfig = function _parseConfig(cfg) { + if (CONFIG && CONFIG === cfg) { + return; + } + + /* Shield configuration object from tampering */ + if (!cfg || (typeof cfg === 'undefined' ? 'undefined' : _typeof(cfg)) !== 'object') { + cfg = {}; + } + + /* Shield configuration object from prototype pollution */ + cfg = clone(cfg); + + /* Set configuration parameters */ + ALLOWED_TAGS = 'ALLOWED_TAGS' in cfg ? addToSet({}, cfg.ALLOWED_TAGS) : DEFAULT_ALLOWED_TAGS; + ALLOWED_ATTR = 'ALLOWED_ATTR' in cfg ? addToSet({}, cfg.ALLOWED_ATTR) : DEFAULT_ALLOWED_ATTR; + URI_SAFE_ATTRIBUTES = 'ADD_URI_SAFE_ATTR' in cfg ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), cfg.ADD_URI_SAFE_ATTR) : DEFAULT_URI_SAFE_ATTRIBUTES; + DATA_URI_TAGS = 'ADD_DATA_URI_TAGS' in cfg ? addToSet(clone(DEFAULT_DATA_URI_TAGS), cfg.ADD_DATA_URI_TAGS) : DEFAULT_DATA_URI_TAGS; + FORBID_CONTENTS = 'FORBID_CONTENTS' in cfg ? addToSet({}, cfg.FORBID_CONTENTS) : DEFAULT_FORBID_CONTENTS; + FORBID_TAGS = 'FORBID_TAGS' in cfg ? addToSet({}, cfg.FORBID_TAGS) : {}; + FORBID_ATTR = 'FORBID_ATTR' in cfg ? addToSet({}, cfg.FORBID_ATTR) : {}; + USE_PROFILES = 'USE_PROFILES' in cfg ? cfg.USE_PROFILES : false; + ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true + ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true + ALLOW_UNKNOWN_PROTOCOLS = cfg.ALLOW_UNKNOWN_PROTOCOLS || false; // Default false + SAFE_FOR_TEMPLATES = cfg.SAFE_FOR_TEMPLATES || false; // Default false + WHOLE_DOCUMENT = cfg.WHOLE_DOCUMENT || false; // Default false + RETURN_DOM = cfg.RETURN_DOM || false; // Default false + RETURN_DOM_FRAGMENT = cfg.RETURN_DOM_FRAGMENT || false; // Default false + RETURN_DOM_IMPORT = cfg.RETURN_DOM_IMPORT !== false; // Default true + RETURN_TRUSTED_TYPE = cfg.RETURN_TRUSTED_TYPE || false; // Default false + FORCE_BODY = cfg.FORCE_BODY || false; // Default false + SANITIZE_DOM = cfg.SANITIZE_DOM !== false; // Default true + KEEP_CONTENT = cfg.KEEP_CONTENT !== false; // Default true + IN_PLACE = cfg.IN_PLACE || false; // Default false + IS_ALLOWED_URI$$1 = cfg.ALLOWED_URI_REGEXP || IS_ALLOWED_URI$$1; + NAMESPACE = cfg.NAMESPACE || HTML_NAMESPACE; + if (SAFE_FOR_TEMPLATES) { + ALLOW_DATA_ATTR = false; + } + + if (RETURN_DOM_FRAGMENT) { + RETURN_DOM = true; + } + + /* Parse profile info */ + if (USE_PROFILES) { + ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray$1(text))); + ALLOWED_ATTR = []; + if (USE_PROFILES.html === true) { + addToSet(ALLOWED_TAGS, html); + addToSet(ALLOWED_ATTR, html$1); + } + + if (USE_PROFILES.svg === true) { + addToSet(ALLOWED_TAGS, svg); + addToSet(ALLOWED_ATTR, svg$1); + addToSet(ALLOWED_ATTR, xml); + } + + if (USE_PROFILES.svgFilters === true) { + addToSet(ALLOWED_TAGS, svgFilters); + addToSet(ALLOWED_ATTR, svg$1); + addToSet(ALLOWED_ATTR, xml); + } + + if (USE_PROFILES.mathMl === true) { + addToSet(ALLOWED_TAGS, mathMl); + addToSet(ALLOWED_ATTR, mathMl$1); + addToSet(ALLOWED_ATTR, xml); + } + } + + /* Merge configuration parameters */ + if (cfg.ADD_TAGS) { + if (ALLOWED_TAGS === DEFAULT_ALLOWED_TAGS) { + ALLOWED_TAGS = clone(ALLOWED_TAGS); + } + + addToSet(ALLOWED_TAGS, cfg.ADD_TAGS); + } + + if (cfg.ADD_ATTR) { + if (ALLOWED_ATTR === DEFAULT_ALLOWED_ATTR) { + ALLOWED_ATTR = clone(ALLOWED_ATTR); + } + + addToSet(ALLOWED_ATTR, cfg.ADD_ATTR); + } + + if (cfg.ADD_URI_SAFE_ATTR) { + addToSet(URI_SAFE_ATTRIBUTES, cfg.ADD_URI_SAFE_ATTR); + } + + if (cfg.FORBID_CONTENTS) { + if (FORBID_CONTENTS === DEFAULT_FORBID_CONTENTS) { + FORBID_CONTENTS = clone(FORBID_CONTENTS); + } + + addToSet(FORBID_CONTENTS, cfg.FORBID_CONTENTS); + } + + /* Add #text in case KEEP_CONTENT is set to true */ + if (KEEP_CONTENT) { + ALLOWED_TAGS['#text'] = true; + } + + /* Add html, head and body to ALLOWED_TAGS in case WHOLE_DOCUMENT is true */ + if (WHOLE_DOCUMENT) { + addToSet(ALLOWED_TAGS, ['html', 'head', 'body']); + } + + /* Add tbody to ALLOWED_TAGS in case tables are permitted, see #286, #365 */ + if (ALLOWED_TAGS.table) { + addToSet(ALLOWED_TAGS, ['tbody']); + delete FORBID_TAGS.tbody; + } + + // Prevent further manipulation of configuration. + // Not available in IE8, Safari 5, etc. + if (freeze) { + freeze(cfg); + } + + CONFIG = cfg; + }; + + var MATHML_TEXT_INTEGRATION_POINTS = addToSet({}, ['mi', 'mo', 'mn', 'ms', 'mtext']); + + var HTML_INTEGRATION_POINTS = addToSet({}, ['foreignobject', 'desc', 'title', 'annotation-xml']); + + /* Keep track of all possible SVG and MathML tags + * so that we can perform the namespace checks + * correctly. */ + var ALL_SVG_TAGS = addToSet({}, svg); + addToSet(ALL_SVG_TAGS, svgFilters); + addToSet(ALL_SVG_TAGS, svgDisallowed); + + var ALL_MATHML_TAGS = addToSet({}, mathMl); + addToSet(ALL_MATHML_TAGS, mathMlDisallowed); + + /** + * + * + * @param {Element} element a DOM element whose namespace is being checked + * @returns {boolean} Return false if the element has a + * namespace that a spec-compliant parser would never + * return. Return true otherwise. + */ + var _checkValidNamespace = function _checkValidNamespace(element) { + var parent = getParentNode(element); + + // In JSDOM, if we're inside shadow DOM, then parentNode + // can be null. We just simulate parent in this case. + if (!parent || !parent.tagName) { + parent = { + namespaceURI: HTML_NAMESPACE, + tagName: 'template' + }; + } + + var tagName = stringToLowerCase(element.tagName); + var parentTagName = stringToLowerCase(parent.tagName); + + if (element.namespaceURI === SVG_NAMESPACE) { + // The only way to switch from HTML namespace to SVG + // is via . If it happens via any other tag, then + // it should be killed. + if (parent.namespaceURI === HTML_NAMESPACE) { + return tagName === 'svg'; + } + + // The only way to switch from MathML to SVG is via + // svg if parent is either or MathML + // text integration points. + if (parent.namespaceURI === MATHML_NAMESPACE) { + return tagName === 'svg' && (parentTagName === 'annotation-xml' || MATHML_TEXT_INTEGRATION_POINTS[parentTagName]); + } + + // We only allow elements that are defined in SVG + // spec. All others are disallowed in SVG namespace. + return Boolean(ALL_SVG_TAGS[tagName]); + } + + if (element.namespaceURI === MATHML_NAMESPACE) { + // The only way to switch from HTML namespace to MathML + // is via . If it happens via any other tag, then + // it should be killed. + if (parent.namespaceURI === HTML_NAMESPACE) { + return tagName === 'math'; + } + + // The only way to switch from SVG to MathML is via + // and HTML integration points + if (parent.namespaceURI === SVG_NAMESPACE) { + return tagName === 'math' && HTML_INTEGRATION_POINTS[parentTagName]; + } + + // We only allow elements that are defined in MathML + // spec. All others are disallowed in MathML namespace. + return Boolean(ALL_MATHML_TAGS[tagName]); + } + + if (element.namespaceURI === HTML_NAMESPACE) { + // The only way to switch from SVG to HTML is via + // HTML integration points, and from MathML to HTML + // is via MathML text integration points + if (parent.namespaceURI === SVG_NAMESPACE && !HTML_INTEGRATION_POINTS[parentTagName]) { + return false; + } + + if (parent.namespaceURI === MATHML_NAMESPACE && !MATHML_TEXT_INTEGRATION_POINTS[parentTagName]) { + return false; + } + + // Certain elements are allowed in both SVG and HTML + // namespace. We need to specify them explicitly + // so that they don't get erronously deleted from + // HTML namespace. + var commonSvgAndHTMLElements = addToSet({}, ['title', 'style', 'font', 'a', 'script']); + + // We disallow tags that are specific for MathML + // or SVG and should never appear in HTML namespace + return !ALL_MATHML_TAGS[tagName] && (commonSvgAndHTMLElements[tagName] || !ALL_SVG_TAGS[tagName]); + } + + // The code should never reach this place (this means + // that the element somehow got namespace that is not + // HTML, SVG or MathML). Return false just in case. + return false; + }; + + /** + * _forceRemove + * + * @param {Node} node a DOM node + */ + var _forceRemove = function _forceRemove(node) { + arrayPush(DOMPurify.removed, { element: node }); + try { + // eslint-disable-next-line unicorn/prefer-dom-node-remove + node.parentNode.removeChild(node); + } catch (_) { + try { + node.outerHTML = emptyHTML; + } catch (_) { + node.remove(); + } + } + }; + + /** + * _removeAttribute + * + * @param {String} name an Attribute name + * @param {Node} node a DOM node + */ + var _removeAttribute = function _removeAttribute(name, node) { + try { + arrayPush(DOMPurify.removed, { + attribute: node.getAttributeNode(name), + from: node + }); + } catch (_) { + arrayPush(DOMPurify.removed, { + attribute: null, + from: node + }); + } + + node.removeAttribute(name); + + // We void attribute values for unremovable "is"" attributes + if (name === 'is' && !ALLOWED_ATTR[name]) { + if (RETURN_DOM || RETURN_DOM_FRAGMENT) { + try { + _forceRemove(node); + } catch (_) {} + } else { + try { + node.setAttribute(name, ''); + } catch (_) {} + } + } + }; + + /** + * _initDocument + * + * @param {String} dirty a string of dirty markup + * @return {Document} a DOM, filled with the dirty markup + */ + var _initDocument = function _initDocument(dirty) { + /* Create a HTML document */ + var doc = void 0; + var leadingWhitespace = void 0; + + if (FORCE_BODY) { + dirty = '' + dirty; + } else { + /* If FORCE_BODY isn't used, leading whitespace needs to be preserved manually */ + var matches = stringMatch(dirty, /^[\r\n\t ]+/); + leadingWhitespace = matches && matches[0]; + } + + var dirtyPayload = trustedTypesPolicy ? trustedTypesPolicy.createHTML(dirty) : dirty; + /* + * Use the DOMParser API by default, fallback later if needs be + * DOMParser not work for svg when has multiple root element. + */ + if (NAMESPACE === HTML_NAMESPACE) { + try { + doc = new DOMParser().parseFromString(dirtyPayload, 'text/html'); + } catch (_) {} + } + + /* Use createHTMLDocument in case DOMParser is not available */ + if (!doc || !doc.documentElement) { + doc = implementation.createDocument(NAMESPACE, 'template', null); + try { + doc.documentElement.innerHTML = IS_EMPTY_INPUT ? '' : dirtyPayload; + } catch (_) { + // Syntax error if dirtyPayload is invalid xml + } + } + + var body = doc.body || doc.documentElement; + + if (dirty && leadingWhitespace) { + body.insertBefore(document.createTextNode(leadingWhitespace), body.childNodes[0] || null); + } + + /* Work on whole document or just its body */ + if (NAMESPACE === HTML_NAMESPACE) { + return getElementsByTagName.call(doc, WHOLE_DOCUMENT ? 'html' : 'body')[0]; + } + + return WHOLE_DOCUMENT ? doc.documentElement : body; + }; + + /** + * _createIterator + * + * @param {Document} root document/fragment to create iterator for + * @return {Iterator} iterator instance + */ + var _createIterator = function _createIterator(root) { + return createNodeIterator.call(root.ownerDocument || root, root, NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT, null, false); + }; + + /** + * _isClobbered + * + * @param {Node} elm element to check for clobbering attacks + * @return {Boolean} true if clobbered, false if safe + */ + var _isClobbered = function _isClobbered(elm) { + if (elm instanceof Text || elm instanceof Comment) { + return false; + } + + if (typeof elm.nodeName !== 'string' || typeof elm.textContent !== 'string' || typeof elm.removeChild !== 'function' || !(elm.attributes instanceof NamedNodeMap) || typeof elm.removeAttribute !== 'function' || typeof elm.setAttribute !== 'function' || typeof elm.namespaceURI !== 'string' || typeof elm.insertBefore !== 'function') { + return true; + } + + return false; + }; + + /** + * _isNode + * + * @param {Node} obj object to check whether it's a DOM node + * @return {Boolean} true is object is a DOM node + */ + var _isNode = function _isNode(object) { + return (typeof Node === 'undefined' ? 'undefined' : _typeof(Node)) === 'object' ? object instanceof Node : object && (typeof object === 'undefined' ? 'undefined' : _typeof(object)) === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string'; + }; + + /** + * _executeHook + * Execute user configurable hooks + * + * @param {String} entryPoint Name of the hook's entry point + * @param {Node} currentNode node to work on with the hook + * @param {Object} data additional hook parameters + */ + var _executeHook = function _executeHook(entryPoint, currentNode, data) { + if (!hooks[entryPoint]) { + return; + } + + arrayForEach(hooks[entryPoint], function (hook) { + hook.call(DOMPurify, currentNode, data, CONFIG); + }); + }; + + /** + * _sanitizeElements + * + * @protect nodeName + * @protect textContent + * @protect removeChild + * + * @param {Node} currentNode to check for permission to exist + * @return {Boolean} true if node was killed, false if left alive + */ + var _sanitizeElements = function _sanitizeElements(currentNode) { + var content = void 0; + + /* Execute a hook if present */ + _executeHook('beforeSanitizeElements', currentNode, null); + + /* Check if element is clobbered or can clobber */ + if (_isClobbered(currentNode)) { + _forceRemove(currentNode); + return true; + } + + /* Check if tagname contains Unicode */ + if (stringMatch(currentNode.nodeName, /[\u0080-\uFFFF]/)) { + _forceRemove(currentNode); + return true; + } + + /* Now let's check the element's type and name */ + var tagName = stringToLowerCase(currentNode.nodeName); + + /* Execute a hook if present */ + _executeHook('uponSanitizeElement', currentNode, { + tagName: tagName, + allowedTags: ALLOWED_TAGS + }); + + /* Detect mXSS attempts abusing namespace confusion */ + if (!_isNode(currentNode.firstElementChild) && (!_isNode(currentNode.content) || !_isNode(currentNode.content.firstElementChild)) && regExpTest(/<[/\w]/g, currentNode.innerHTML) && regExpTest(/<[/\w]/g, currentNode.textContent)) { + _forceRemove(currentNode); + return true; + } + + /* Mitigate a problem with templates inside select */ + if (tagName === 'select' && regExpTest(/
' + '
' + '
' + '
' + '
' + '
' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '
' + '
'; + + /** + * Check if the given value is not a number. + */ + + var isNaN = Number.isNaN || WINDOW.isNaN; + /** + * Check if the given value is a number. + * @param {*} value - The value to check. + * @returns {boolean} Returns `true` if the given value is a number, else `false`. + */ + + function isNumber(value) { + return typeof value === 'number' && !isNaN(value); + } + /** + * Check if the given value is a positive number. + * @param {*} value - The value to check. + * @returns {boolean} Returns `true` if the given value is a positive number, else `false`. + */ + + var isPositiveNumber = function isPositiveNumber(value) { + return value > 0 && value < Infinity; + }; + /** + * Check if the given value is undefined. + * @param {*} value - The value to check. + * @returns {boolean} Returns `true` if the given value is undefined, else `false`. + */ + + function isUndefined(value) { + return typeof value === 'undefined'; + } + /** + * Check if the given value is an object. + * @param {*} value - The value to check. + * @returns {boolean} Returns `true` if the given value is an object, else `false`. + */ + + function isObject(value) { + return _typeof(value) === 'object' && value !== null; + } + var hasOwnProperty = Object.prototype.hasOwnProperty; + /** + * Check if the given value is a plain object. + * @param {*} value - The value to check. + * @returns {boolean} Returns `true` if the given value is a plain object, else `false`. + */ + + function isPlainObject(value) { + if (!isObject(value)) { + return false; + } + + try { + var _constructor = value.constructor; + var prototype = _constructor.prototype; + return _constructor && prototype && hasOwnProperty.call(prototype, 'isPrototypeOf'); + } catch (error) { + return false; + } + } + /** + * Check if the given value is a function. + * @param {*} value - The value to check. + * @returns {boolean} Returns `true` if the given value is a function, else `false`. + */ + + function isFunction(value) { + return typeof value === 'function'; + } + var slice = Array.prototype.slice; + /** + * Convert array-like or iterable object to an array. + * @param {*} value - The value to convert. + * @returns {Array} Returns a new array. + */ + + function toArray(value) { + return Array.from ? Array.from(value) : slice.call(value); + } + /** + * Iterate the given data. + * @param {*} data - The data to iterate. + * @param {Function} callback - The process function for each element. + * @returns {*} The original data. + */ + + function forEach(data, callback) { + if (data && isFunction(callback)) { + if (Array.isArray(data) || isNumber(data.length) + /* array-like */ + ) { + toArray(data).forEach(function (value, key) { + callback.call(data, value, key, data); + }); + } else if (isObject(data)) { + Object.keys(data).forEach(function (key) { + callback.call(data, data[key], key, data); + }); + } + } + + return data; + } + /** + * Extend the given object. + * @param {*} target - The target object to extend. + * @param {*} args - The rest objects for merging to the target object. + * @returns {Object} The extended object. + */ + + var assign = Object.assign || function assign(target) { + for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + args[_key - 1] = arguments[_key]; + } + + if (isObject(target) && args.length > 0) { + args.forEach(function (arg) { + if (isObject(arg)) { + Object.keys(arg).forEach(function (key) { + target[key] = arg[key]; + }); + } + }); + } + + return target; + }; + var REGEXP_DECIMALS = /\.\d*(?:0|9){12}\d*$/; + /** + * Normalize decimal number. + * Check out {@link http://0.30000000000000004.com/} + * @param {number} value - The value to normalize. + * @param {number} [times=100000000000] - The times for normalizing. + * @returns {number} Returns the normalized number. + */ + + function normalizeDecimalNumber(value) { + var times = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 100000000000; + return REGEXP_DECIMALS.test(value) ? Math.round(value * times) / times : value; + } + var REGEXP_SUFFIX = /^width|height|left|top|marginLeft|marginTop$/; + /** + * Apply styles to the given element. + * @param {Element} element - The target element. + * @param {Object} styles - The styles for applying. + */ + + function setStyle(element, styles) { + var style = element.style; + forEach(styles, function (value, property) { + if (REGEXP_SUFFIX.test(property) && isNumber(value)) { + value = "".concat(value, "px"); + } + + style[property] = value; + }); + } + /** + * Check if the given element has a special class. + * @param {Element} element - The element to check. + * @param {string} value - The class to search. + * @returns {boolean} Returns `true` if the special class was found. + */ + + function hasClass(element, value) { + return element.classList ? element.classList.contains(value) : element.className.indexOf(value) > -1; + } + /** + * Add classes to the given element. + * @param {Element} element - The target element. + * @param {string} value - The classes to be added. + */ + + function addClass(element, value) { + if (!value) { + return; + } + + if (isNumber(element.length)) { + forEach(element, function (elem) { + addClass(elem, value); + }); + return; + } + + if (element.classList) { + element.classList.add(value); + return; + } + + var className = element.className.trim(); + + if (!className) { + element.className = value; + } else if (className.indexOf(value) < 0) { + element.className = "".concat(className, " ").concat(value); + } + } + /** + * Remove classes from the given element. + * @param {Element} element - The target element. + * @param {string} value - The classes to be removed. + */ + + function removeClass(element, value) { + if (!value) { + return; + } + + if (isNumber(element.length)) { + forEach(element, function (elem) { + removeClass(elem, value); + }); + return; + } + + if (element.classList) { + element.classList.remove(value); + return; + } + + if (element.className.indexOf(value) >= 0) { + element.className = element.className.replace(value, ''); + } + } + /** + * Add or remove classes from the given element. + * @param {Element} element - The target element. + * @param {string} value - The classes to be toggled. + * @param {boolean} added - Add only. + */ + + function toggleClass(element, value, added) { + if (!value) { + return; + } + + if (isNumber(element.length)) { + forEach(element, function (elem) { + toggleClass(elem, value, added); + }); + return; + } // IE10-11 doesn't support the second parameter of `classList.toggle` + + + if (added) { + addClass(element, value); + } else { + removeClass(element, value); + } + } + var REGEXP_CAMEL_CASE = /([a-z\d])([A-Z])/g; + /** + * Transform the given string from camelCase to kebab-case + * @param {string} value - The value to transform. + * @returns {string} The transformed value. + */ + + function toParamCase(value) { + return value.replace(REGEXP_CAMEL_CASE, '$1-$2').toLowerCase(); + } + /** + * Get data from the given element. + * @param {Element} element - The target element. + * @param {string} name - The data key to get. + * @returns {string} The data value. + */ + + function getData(element, name) { + if (isObject(element[name])) { + return element[name]; + } + + if (element.dataset) { + return element.dataset[name]; + } + + return element.getAttribute("data-".concat(toParamCase(name))); + } + /** + * Set data to the given element. + * @param {Element} element - The target element. + * @param {string} name - The data key to set. + * @param {string} data - The data value. + */ + + function setData(element, name, data) { + if (isObject(data)) { + element[name] = data; + } else if (element.dataset) { + element.dataset[name] = data; + } else { + element.setAttribute("data-".concat(toParamCase(name)), data); + } + } + /** + * Remove data from the given element. + * @param {Element} element - The target element. + * @param {string} name - The data key to remove. + */ + + function removeData(element, name) { + if (isObject(element[name])) { + try { + delete element[name]; + } catch (error) { + element[name] = undefined; + } + } else if (element.dataset) { + // #128 Safari not allows to delete dataset property + try { + delete element.dataset[name]; + } catch (error) { + element.dataset[name] = undefined; + } + } else { + element.removeAttribute("data-".concat(toParamCase(name))); + } + } + var REGEXP_SPACES = /\s\s*/; + + var onceSupported = function () { + var supported = false; + + if (IS_BROWSER) { + var once = false; + + var listener = function listener() {}; + + var options = Object.defineProperty({}, 'once', { + get: function get() { + supported = true; + return once; + }, + + /** + * This setter can fix a `TypeError` in strict mode + * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Getter_only} + * @param {boolean} value - The value to set + */ + set: function set(value) { + once = value; + } + }); + WINDOW.addEventListener('test', listener, options); + WINDOW.removeEventListener('test', listener, options); + } + + return supported; + }(); + /** + * Remove event listener from the target element. + * @param {Element} element - The event target. + * @param {string} type - The event type(s). + * @param {Function} listener - The event listener. + * @param {Object} options - The event options. + */ + + + function removeListener(element, type, listener) { + var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; + var handler = listener; + type.trim().split(REGEXP_SPACES).forEach(function (event) { + if (!onceSupported) { + var listeners = element.listeners; + + if (listeners && listeners[event] && listeners[event][listener]) { + handler = listeners[event][listener]; + delete listeners[event][listener]; + + if (Object.keys(listeners[event]).length === 0) { + delete listeners[event]; + } + + if (Object.keys(listeners).length === 0) { + delete element.listeners; + } + } + } + + element.removeEventListener(event, handler, options); + }); + } + /** + * Add event listener to the target element. + * @param {Element} element - The event target. + * @param {string} type - The event type(s). + * @param {Function} listener - The event listener. + * @param {Object} options - The event options. + */ + + function addListener(element, type, listener) { + var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; + var _handler = listener; + type.trim().split(REGEXP_SPACES).forEach(function (event) { + if (options.once && !onceSupported) { + var _element$listeners = element.listeners, + listeners = _element$listeners === void 0 ? {} : _element$listeners; + + _handler = function handler() { + delete listeners[event][listener]; + element.removeEventListener(event, _handler, options); + + for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { + args[_key2] = arguments[_key2]; + } + + listener.apply(element, args); + }; + + if (!listeners[event]) { + listeners[event] = {}; + } + + if (listeners[event][listener]) { + element.removeEventListener(event, listeners[event][listener], options); + } + + listeners[event][listener] = _handler; + element.listeners = listeners; + } + + element.addEventListener(event, _handler, options); + }); + } + /** + * Dispatch event on the target element. + * @param {Element} element - The event target. + * @param {string} type - The event type(s). + * @param {Object} data - The additional event data. + * @returns {boolean} Indicate if the event is default prevented or not. + */ + + function dispatchEvent(element, type, data) { + var event; // Event and CustomEvent on IE9-11 are global objects, not constructors + + if (isFunction(Event) && isFunction(CustomEvent)) { + event = new CustomEvent(type, { + detail: data, + bubbles: true, + cancelable: true + }); + } else { + event = document.createEvent('CustomEvent'); + event.initCustomEvent(type, true, true, data); + } + + return element.dispatchEvent(event); + } + /** + * Get the offset base on the document. + * @param {Element} element - The target element. + * @returns {Object} The offset data. + */ + + function getOffset(element) { + var box = element.getBoundingClientRect(); + return { + left: box.left + (window.pageXOffset - document.documentElement.clientLeft), + top: box.top + (window.pageYOffset - document.documentElement.clientTop) + }; + } + var location = WINDOW.location; + var REGEXP_ORIGINS = /^(\w+:)\/\/([^:/?#]*):?(\d*)/i; + /** + * Check if the given URL is a cross origin URL. + * @param {string} url - The target URL. + * @returns {boolean} Returns `true` if the given URL is a cross origin URL, else `false`. + */ + + function isCrossOriginURL(url) { + var parts = url.match(REGEXP_ORIGINS); + return parts !== null && (parts[1] !== location.protocol || parts[2] !== location.hostname || parts[3] !== location.port); + } + /** + * Add timestamp to the given URL. + * @param {string} url - The target URL. + * @returns {string} The result URL. + */ + + function addTimestamp(url) { + var timestamp = "timestamp=".concat(new Date().getTime()); + return url + (url.indexOf('?') === -1 ? '?' : '&') + timestamp; + } + /** + * Get transforms base on the given object. + * @param {Object} obj - The target object. + * @returns {string} A string contains transform values. + */ + + function getTransforms(_ref) { + var rotate = _ref.rotate, + scaleX = _ref.scaleX, + scaleY = _ref.scaleY, + translateX = _ref.translateX, + translateY = _ref.translateY; + var values = []; + + if (isNumber(translateX) && translateX !== 0) { + values.push("translateX(".concat(translateX, "px)")); + } + + if (isNumber(translateY) && translateY !== 0) { + values.push("translateY(".concat(translateY, "px)")); + } // Rotate should come first before scale to match orientation transform + + + if (isNumber(rotate) && rotate !== 0) { + values.push("rotate(".concat(rotate, "deg)")); + } + + if (isNumber(scaleX) && scaleX !== 1) { + values.push("scaleX(".concat(scaleX, ")")); + } + + if (isNumber(scaleY) && scaleY !== 1) { + values.push("scaleY(".concat(scaleY, ")")); + } + + var transform = values.length ? values.join(' ') : 'none'; + return { + WebkitTransform: transform, + msTransform: transform, + transform: transform + }; + } + /** + * Get the max ratio of a group of pointers. + * @param {string} pointers - The target pointers. + * @returns {number} The result ratio. + */ + + function getMaxZoomRatio(pointers) { + var pointers2 = assign({}, pointers); + var ratios = []; + forEach(pointers, function (pointer, pointerId) { + delete pointers2[pointerId]; + forEach(pointers2, function (pointer2) { + var x1 = Math.abs(pointer.startX - pointer2.startX); + var y1 = Math.abs(pointer.startY - pointer2.startY); + var x2 = Math.abs(pointer.endX - pointer2.endX); + var y2 = Math.abs(pointer.endY - pointer2.endY); + var z1 = Math.sqrt(x1 * x1 + y1 * y1); + var z2 = Math.sqrt(x2 * x2 + y2 * y2); + var ratio = (z2 - z1) / z1; + ratios.push(ratio); + }); + }); + ratios.sort(function (a, b) { + return Math.abs(a) < Math.abs(b); + }); + return ratios[0]; + } + /** + * Get a pointer from an event object. + * @param {Object} event - The target event object. + * @param {boolean} endOnly - Indicates if only returns the end point coordinate or not. + * @returns {Object} The result pointer contains start and/or end point coordinates. + */ + + function getPointer(_ref2, endOnly) { + var pageX = _ref2.pageX, + pageY = _ref2.pageY; + var end = { + endX: pageX, + endY: pageY + }; + return endOnly ? end : assign({ + startX: pageX, + startY: pageY + }, end); + } + /** + * Get the center point coordinate of a group of pointers. + * @param {Object} pointers - The target pointers. + * @returns {Object} The center point coordinate. + */ + + function getPointersCenter(pointers) { + var pageX = 0; + var pageY = 0; + var count = 0; + forEach(pointers, function (_ref3) { + var startX = _ref3.startX, + startY = _ref3.startY; + pageX += startX; + pageY += startY; + count += 1; + }); + pageX /= count; + pageY /= count; + return { + pageX: pageX, + pageY: pageY + }; + } + /** + * Get the max sizes in a rectangle under the given aspect ratio. + * @param {Object} data - The original sizes. + * @param {string} [type='contain'] - The adjust type. + * @returns {Object} The result sizes. + */ + + function getAdjustedSizes(_ref4) // or 'cover' + { + var aspectRatio = _ref4.aspectRatio, + height = _ref4.height, + width = _ref4.width; + var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'contain'; + var isValidWidth = isPositiveNumber(width); + var isValidHeight = isPositiveNumber(height); + + if (isValidWidth && isValidHeight) { + var adjustedWidth = height * aspectRatio; + + if (type === 'contain' && adjustedWidth > width || type === 'cover' && adjustedWidth < width) { + height = width / aspectRatio; + } else { + width = height * aspectRatio; + } + } else if (isValidWidth) { + height = width / aspectRatio; + } else if (isValidHeight) { + width = height * aspectRatio; + } + + return { + width: width, + height: height + }; + } + /** + * Get the new sizes of a rectangle after rotated. + * @param {Object} data - The original sizes. + * @returns {Object} The result sizes. + */ + + function getRotatedSizes(_ref5) { + var width = _ref5.width, + height = _ref5.height, + degree = _ref5.degree; + degree = Math.abs(degree) % 180; + + if (degree === 90) { + return { + width: height, + height: width + }; + } + + var arc = degree % 90 * Math.PI / 180; + var sinArc = Math.sin(arc); + var cosArc = Math.cos(arc); + var newWidth = width * cosArc + height * sinArc; + var newHeight = width * sinArc + height * cosArc; + return degree > 90 ? { + width: newHeight, + height: newWidth + } : { + width: newWidth, + height: newHeight + }; + } + /** + * Get a canvas which drew the given image. + * @param {HTMLImageElement} image - The image for drawing. + * @param {Object} imageData - The image data. + * @param {Object} canvasData - The canvas data. + * @param {Object} options - The options. + * @returns {HTMLCanvasElement} The result canvas. + */ + + function getSourceCanvas(image, _ref6, _ref7, _ref8) { + var imageAspectRatio = _ref6.aspectRatio, + imageNaturalWidth = _ref6.naturalWidth, + imageNaturalHeight = _ref6.naturalHeight, + _ref6$rotate = _ref6.rotate, + rotate = _ref6$rotate === void 0 ? 0 : _ref6$rotate, + _ref6$scaleX = _ref6.scaleX, + scaleX = _ref6$scaleX === void 0 ? 1 : _ref6$scaleX, + _ref6$scaleY = _ref6.scaleY, + scaleY = _ref6$scaleY === void 0 ? 1 : _ref6$scaleY; + var aspectRatio = _ref7.aspectRatio, + naturalWidth = _ref7.naturalWidth, + naturalHeight = _ref7.naturalHeight; + var _ref8$fillColor = _ref8.fillColor, + fillColor = _ref8$fillColor === void 0 ? 'transparent' : _ref8$fillColor, + _ref8$imageSmoothingE = _ref8.imageSmoothingEnabled, + imageSmoothingEnabled = _ref8$imageSmoothingE === void 0 ? true : _ref8$imageSmoothingE, + _ref8$imageSmoothingQ = _ref8.imageSmoothingQuality, + imageSmoothingQuality = _ref8$imageSmoothingQ === void 0 ? 'low' : _ref8$imageSmoothingQ, + _ref8$maxWidth = _ref8.maxWidth, + maxWidth = _ref8$maxWidth === void 0 ? Infinity : _ref8$maxWidth, + _ref8$maxHeight = _ref8.maxHeight, + maxHeight = _ref8$maxHeight === void 0 ? Infinity : _ref8$maxHeight, + _ref8$minWidth = _ref8.minWidth, + minWidth = _ref8$minWidth === void 0 ? 0 : _ref8$minWidth, + _ref8$minHeight = _ref8.minHeight, + minHeight = _ref8$minHeight === void 0 ? 0 : _ref8$minHeight; + var canvas = document.createElement('canvas'); + var context = canvas.getContext('2d'); + var maxSizes = getAdjustedSizes({ + aspectRatio: aspectRatio, + width: maxWidth, + height: maxHeight + }); + var minSizes = getAdjustedSizes({ + aspectRatio: aspectRatio, + width: minWidth, + height: minHeight + }, 'cover'); + var width = Math.min(maxSizes.width, Math.max(minSizes.width, naturalWidth)); + var height = Math.min(maxSizes.height, Math.max(minSizes.height, naturalHeight)); // Note: should always use image's natural sizes for drawing as + // imageData.naturalWidth === canvasData.naturalHeight when rotate % 180 === 90 + + var destMaxSizes = getAdjustedSizes({ + aspectRatio: imageAspectRatio, + width: maxWidth, + height: maxHeight + }); + var destMinSizes = getAdjustedSizes({ + aspectRatio: imageAspectRatio, + width: minWidth, + height: minHeight + }, 'cover'); + var destWidth = Math.min(destMaxSizes.width, Math.max(destMinSizes.width, imageNaturalWidth)); + var destHeight = Math.min(destMaxSizes.height, Math.max(destMinSizes.height, imageNaturalHeight)); + var params = [-destWidth / 2, -destHeight / 2, destWidth, destHeight]; + canvas.width = normalizeDecimalNumber(width); + canvas.height = normalizeDecimalNumber(height); + context.fillStyle = fillColor; + context.fillRect(0, 0, width, height); + context.save(); + context.translate(width / 2, height / 2); + context.rotate(rotate * Math.PI / 180); + context.scale(scaleX, scaleY); + context.imageSmoothingEnabled = imageSmoothingEnabled; + context.imageSmoothingQuality = imageSmoothingQuality; + /** + * ODOO FIX START + * + * Canevas is translated and then translated back. For the second translation the + * translation distances were rounded to the nearest integer below when it should + * not since the distances of the first translation are either an integer or the + * half of an integer. + * + * Fix proposed by https://github.com/fengyuanchen/cropperjs/pull/866 + */ + params = params.map(normalizeDecimalNumber); + context.drawImage(image, params[0], params[1], Math.floor(params[2]), Math.floor(params[3])); + // ODOO FIX END + context.restore(); + return canvas; + } + var fromCharCode = String.fromCharCode; + /** + * Get string from char code in data view. + * @param {DataView} dataView - The data view for read. + * @param {number} start - The start index. + * @param {number} length - The read length. + * @returns {string} The read result. + */ + + function getStringFromCharCode(dataView, start, length) { + var str = ''; + length += start; + + for (var i = start; i < length; i += 1) { + str += fromCharCode(dataView.getUint8(i)); + } + + return str; + } + var REGEXP_DATA_URL_HEAD = /^data:.*,/; + /** + * Transform Data URL to array buffer. + * @param {string} dataURL - The Data URL to transform. + * @returns {ArrayBuffer} The result array buffer. + */ + + function dataURLToArrayBuffer(dataURL) { + var base64 = dataURL.replace(REGEXP_DATA_URL_HEAD, ''); + var binary = atob(base64); + var arrayBuffer = new ArrayBuffer(binary.length); + var uint8 = new Uint8Array(arrayBuffer); + forEach(uint8, function (value, i) { + uint8[i] = binary.charCodeAt(i); + }); + return arrayBuffer; + } + /** + * Transform array buffer to Data URL. + * @param {ArrayBuffer} arrayBuffer - The array buffer to transform. + * @param {string} mimeType - The mime type of the Data URL. + * @returns {string} The result Data URL. + */ + + function arrayBufferToDataURL(arrayBuffer, mimeType) { + var chunks = []; // Chunk Typed Array for better performance (#435) + + var chunkSize = 8192; + var uint8 = new Uint8Array(arrayBuffer); + + while (uint8.length > 0) { + // XXX: Babel's `toConsumableArray` helper will throw error in IE or Safari 9 + // eslint-disable-next-line prefer-spread + chunks.push(fromCharCode.apply(null, toArray(uint8.subarray(0, chunkSize)))); + uint8 = uint8.subarray(chunkSize); + } + + return "data:".concat(mimeType, ";base64,").concat(btoa(chunks.join(''))); + } + /** + * Get orientation value from given array buffer. + * @param {ArrayBuffer} arrayBuffer - The array buffer to read. + * @returns {number} The read orientation value. + */ + + function resetAndGetOrientation(arrayBuffer) { + var dataView = new DataView(arrayBuffer); + var orientation; // Ignores range error when the image does not have correct Exif information + + try { + var littleEndian; + var app1Start; + var ifdStart; // Only handle JPEG image (start by 0xFFD8) + + if (dataView.getUint8(0) === 0xFF && dataView.getUint8(1) === 0xD8) { + var length = dataView.byteLength; + var offset = 2; + + while (offset + 1 < length) { + if (dataView.getUint8(offset) === 0xFF && dataView.getUint8(offset + 1) === 0xE1) { + app1Start = offset; + break; + } + + offset += 1; + } + } + + if (app1Start) { + var exifIDCode = app1Start + 4; + var tiffOffset = app1Start + 10; + + if (getStringFromCharCode(dataView, exifIDCode, 4) === 'Exif') { + var endianness = dataView.getUint16(tiffOffset); + littleEndian = endianness === 0x4949; + + if (littleEndian || endianness === 0x4D4D + /* bigEndian */ + ) { + if (dataView.getUint16(tiffOffset + 2, littleEndian) === 0x002A) { + var firstIFDOffset = dataView.getUint32(tiffOffset + 4, littleEndian); + + if (firstIFDOffset >= 0x00000008) { + ifdStart = tiffOffset + firstIFDOffset; + } + } + } + } + } + + if (ifdStart) { + var _length = dataView.getUint16(ifdStart, littleEndian); + + var _offset; + + var i; + + for (i = 0; i < _length; i += 1) { + _offset = ifdStart + i * 12 + 2; + + if (dataView.getUint16(_offset, littleEndian) === 0x0112 + /* Orientation */ + ) { + // 8 is the offset of the current tag's value + _offset += 8; // Get the original orientation value + + orientation = dataView.getUint16(_offset, littleEndian); // Override the orientation with its default value + + dataView.setUint16(_offset, 1, littleEndian); + break; + } + } + } + } catch (error) { + orientation = 1; + } + + return orientation; + } + /** + * Parse Exif Orientation value. + * @param {number} orientation - The orientation to parse. + * @returns {Object} The parsed result. + */ + + function parseOrientation(orientation) { + var rotate = 0; + var scaleX = 1; + var scaleY = 1; + + switch (orientation) { + // Flip horizontal + case 2: + scaleX = -1; + break; + // Rotate left 180° + + case 3: + rotate = -180; + break; + // Flip vertical + + case 4: + scaleY = -1; + break; + // Flip vertical and rotate right 90° + + case 5: + rotate = 90; + scaleY = -1; + break; + // Rotate right 90° + + case 6: + rotate = 90; + break; + // Flip horizontal and rotate right 90° + + case 7: + rotate = 90; + scaleX = -1; + break; + // Rotate left 90° + + case 8: + rotate = -90; + break; + + default: + } + + return { + rotate: rotate, + scaleX: scaleX, + scaleY: scaleY + }; + } + + var render = { + render: function render() { + this.initContainer(); + this.initCanvas(); + this.initCropBox(); + this.renderCanvas(); + + if (this.cropped) { + this.renderCropBox(); + } + }, + initContainer: function initContainer() { + var element = this.element, + options = this.options, + container = this.container, + cropper = this.cropper; + addClass(cropper, CLASS_HIDDEN); + removeClass(element, CLASS_HIDDEN); + var containerData = { + width: Math.max(container.offsetWidth, Number(options.minContainerWidth) || 200), + height: Math.max(container.offsetHeight, Number(options.minContainerHeight) || 100) + }; + this.containerData = containerData; + setStyle(cropper, { + width: containerData.width, + height: containerData.height + }); + addClass(element, CLASS_HIDDEN); + removeClass(cropper, CLASS_HIDDEN); + }, + // Canvas (image wrapper) + initCanvas: function initCanvas() { + var containerData = this.containerData, + imageData = this.imageData; + var viewMode = this.options.viewMode; + var rotated = Math.abs(imageData.rotate) % 180 === 90; + var naturalWidth = rotated ? imageData.naturalHeight : imageData.naturalWidth; + var naturalHeight = rotated ? imageData.naturalWidth : imageData.naturalHeight; + var aspectRatio = naturalWidth / naturalHeight; + var canvasWidth = containerData.width; + var canvasHeight = containerData.height; + + if (containerData.height * aspectRatio > containerData.width) { + if (viewMode === 3) { + canvasWidth = containerData.height * aspectRatio; + } else { + canvasHeight = containerData.width / aspectRatio; + } + } else if (viewMode === 3) { + canvasHeight = containerData.width / aspectRatio; + } else { + canvasWidth = containerData.height * aspectRatio; + } + + var canvasData = { + aspectRatio: aspectRatio, + naturalWidth: naturalWidth, + naturalHeight: naturalHeight, + width: canvasWidth, + height: canvasHeight + }; + canvasData.left = (containerData.width - canvasWidth) / 2; + canvasData.top = (containerData.height - canvasHeight) / 2; + canvasData.oldLeft = canvasData.left; + canvasData.oldTop = canvasData.top; + this.canvasData = canvasData; + this.limited = viewMode === 1 || viewMode === 2; + this.limitCanvas(true, true); + this.initialImageData = assign({}, imageData); + this.initialCanvasData = assign({}, canvasData); + }, + limitCanvas: function limitCanvas(sizeLimited, positionLimited) { + var options = this.options, + containerData = this.containerData, + canvasData = this.canvasData, + cropBoxData = this.cropBoxData; + var viewMode = options.viewMode; + var aspectRatio = canvasData.aspectRatio; + var cropped = this.cropped && cropBoxData; + + if (sizeLimited) { + var minCanvasWidth = Number(options.minCanvasWidth) || 0; + var minCanvasHeight = Number(options.minCanvasHeight) || 0; + + if (viewMode > 1) { + minCanvasWidth = Math.max(minCanvasWidth, containerData.width); + minCanvasHeight = Math.max(minCanvasHeight, containerData.height); + + if (viewMode === 3) { + if (minCanvasHeight * aspectRatio > minCanvasWidth) { + minCanvasWidth = minCanvasHeight * aspectRatio; + } else { + minCanvasHeight = minCanvasWidth / aspectRatio; + } + } + } else if (viewMode > 0) { + if (minCanvasWidth) { + minCanvasWidth = Math.max(minCanvasWidth, cropped ? cropBoxData.width : 0); + } else if (minCanvasHeight) { + minCanvasHeight = Math.max(minCanvasHeight, cropped ? cropBoxData.height : 0); + } else if (cropped) { + minCanvasWidth = cropBoxData.width; + minCanvasHeight = cropBoxData.height; + + if (minCanvasHeight * aspectRatio > minCanvasWidth) { + minCanvasWidth = minCanvasHeight * aspectRatio; + } else { + minCanvasHeight = minCanvasWidth / aspectRatio; + } + } + } + + var _getAdjustedSizes = getAdjustedSizes({ + aspectRatio: aspectRatio, + width: minCanvasWidth, + height: minCanvasHeight + }); + + minCanvasWidth = _getAdjustedSizes.width; + minCanvasHeight = _getAdjustedSizes.height; + canvasData.minWidth = minCanvasWidth; + canvasData.minHeight = minCanvasHeight; + canvasData.maxWidth = Infinity; + canvasData.maxHeight = Infinity; + } + + if (positionLimited) { + if (viewMode > (cropped ? 0 : 1)) { + var newCanvasLeft = containerData.width - canvasData.width; + var newCanvasTop = containerData.height - canvasData.height; + canvasData.minLeft = Math.min(0, newCanvasLeft); + canvasData.minTop = Math.min(0, newCanvasTop); + canvasData.maxLeft = Math.max(0, newCanvasLeft); + canvasData.maxTop = Math.max(0, newCanvasTop); + + if (cropped && this.limited) { + canvasData.minLeft = Math.min(cropBoxData.left, cropBoxData.left + (cropBoxData.width - canvasData.width)); + canvasData.minTop = Math.min(cropBoxData.top, cropBoxData.top + (cropBoxData.height - canvasData.height)); + canvasData.maxLeft = cropBoxData.left; + canvasData.maxTop = cropBoxData.top; + + if (viewMode === 2) { + if (canvasData.width >= containerData.width) { + canvasData.minLeft = Math.min(0, newCanvasLeft); + canvasData.maxLeft = Math.max(0, newCanvasLeft); + } + + if (canvasData.height >= containerData.height) { + canvasData.minTop = Math.min(0, newCanvasTop); + canvasData.maxTop = Math.max(0, newCanvasTop); + } + } + } + } else { + canvasData.minLeft = -canvasData.width; + canvasData.minTop = -canvasData.height; + canvasData.maxLeft = containerData.width; + canvasData.maxTop = containerData.height; + } + } + }, + renderCanvas: function renderCanvas(changed, transformed) { + var canvasData = this.canvasData, + imageData = this.imageData; + + if (transformed) { + var _getRotatedSizes = getRotatedSizes({ + width: imageData.naturalWidth * Math.abs(imageData.scaleX || 1), + height: imageData.naturalHeight * Math.abs(imageData.scaleY || 1), + degree: imageData.rotate || 0 + }), + naturalWidth = _getRotatedSizes.width, + naturalHeight = _getRotatedSizes.height; + + var width = canvasData.width * (naturalWidth / canvasData.naturalWidth); + var height = canvasData.height * (naturalHeight / canvasData.naturalHeight); + canvasData.left -= (width - canvasData.width) / 2; + canvasData.top -= (height - canvasData.height) / 2; + canvasData.width = width; + canvasData.height = height; + canvasData.aspectRatio = naturalWidth / naturalHeight; + canvasData.naturalWidth = naturalWidth; + canvasData.naturalHeight = naturalHeight; + this.limitCanvas(true, false); + } + + if (canvasData.width > canvasData.maxWidth || canvasData.width < canvasData.minWidth) { + canvasData.left = canvasData.oldLeft; + } + + if (canvasData.height > canvasData.maxHeight || canvasData.height < canvasData.minHeight) { + canvasData.top = canvasData.oldTop; + } + + canvasData.width = Math.min(Math.max(canvasData.width, canvasData.minWidth), canvasData.maxWidth); + canvasData.height = Math.min(Math.max(canvasData.height, canvasData.minHeight), canvasData.maxHeight); + this.limitCanvas(false, true); + canvasData.left = Math.min(Math.max(canvasData.left, canvasData.minLeft), canvasData.maxLeft); + canvasData.top = Math.min(Math.max(canvasData.top, canvasData.minTop), canvasData.maxTop); + canvasData.oldLeft = canvasData.left; + canvasData.oldTop = canvasData.top; + setStyle(this.canvas, assign({ + width: canvasData.width, + height: canvasData.height + }, getTransforms({ + translateX: canvasData.left, + translateY: canvasData.top + }))); + this.renderImage(changed); + + if (this.cropped && this.limited) { + this.limitCropBox(true, true); + } + }, + renderImage: function renderImage(changed) { + var canvasData = this.canvasData, + imageData = this.imageData; + var width = imageData.naturalWidth * (canvasData.width / canvasData.naturalWidth); + var height = imageData.naturalHeight * (canvasData.height / canvasData.naturalHeight); + assign(imageData, { + width: width, + height: height, + left: (canvasData.width - width) / 2, + top: (canvasData.height - height) / 2 + }); + setStyle(this.image, assign({ + width: imageData.width, + height: imageData.height + }, getTransforms(assign({ + translateX: imageData.left, + translateY: imageData.top + }, imageData)))); + + if (changed) { + this.output(); + } + }, + initCropBox: function initCropBox() { + var options = this.options, + canvasData = this.canvasData; + var aspectRatio = options.aspectRatio || options.initialAspectRatio; + var autoCropArea = Number(options.autoCropArea) || 0.8; + var cropBoxData = { + width: canvasData.width, + height: canvasData.height + }; + + if (aspectRatio) { + if (canvasData.height * aspectRatio > canvasData.width) { + cropBoxData.height = cropBoxData.width / aspectRatio; + } else { + cropBoxData.width = cropBoxData.height * aspectRatio; + } + } + + this.cropBoxData = cropBoxData; + this.limitCropBox(true, true); // Initialize auto crop area + + cropBoxData.width = Math.min(Math.max(cropBoxData.width, cropBoxData.minWidth), cropBoxData.maxWidth); + cropBoxData.height = Math.min(Math.max(cropBoxData.height, cropBoxData.minHeight), cropBoxData.maxHeight); // The width/height of auto crop area must large than "minWidth/Height" + + cropBoxData.width = Math.max(cropBoxData.minWidth, cropBoxData.width * autoCropArea); + cropBoxData.height = Math.max(cropBoxData.minHeight, cropBoxData.height * autoCropArea); + cropBoxData.left = canvasData.left + (canvasData.width - cropBoxData.width) / 2; + cropBoxData.top = canvasData.top + (canvasData.height - cropBoxData.height) / 2; + cropBoxData.oldLeft = cropBoxData.left; + cropBoxData.oldTop = cropBoxData.top; + this.initialCropBoxData = assign({}, cropBoxData); + }, + limitCropBox: function limitCropBox(sizeLimited, positionLimited) { + var options = this.options, + containerData = this.containerData, + canvasData = this.canvasData, + cropBoxData = this.cropBoxData, + limited = this.limited; + var aspectRatio = options.aspectRatio; + + if (sizeLimited) { + var minCropBoxWidth = Number(options.minCropBoxWidth) || 0; + var minCropBoxHeight = Number(options.minCropBoxHeight) || 0; + var maxCropBoxWidth = limited ? Math.min(containerData.width, canvasData.width, canvasData.width + canvasData.left, containerData.width - canvasData.left) : containerData.width; + var maxCropBoxHeight = limited ? Math.min(containerData.height, canvasData.height, canvasData.height + canvasData.top, containerData.height - canvasData.top) : containerData.height; // The min/maxCropBoxWidth/Height must be less than container's width/height + + minCropBoxWidth = Math.min(minCropBoxWidth, containerData.width); + minCropBoxHeight = Math.min(minCropBoxHeight, containerData.height); + + if (aspectRatio) { + if (minCropBoxWidth && minCropBoxHeight) { + if (minCropBoxHeight * aspectRatio > minCropBoxWidth) { + minCropBoxHeight = minCropBoxWidth / aspectRatio; + } else { + minCropBoxWidth = minCropBoxHeight * aspectRatio; + } + } else if (minCropBoxWidth) { + minCropBoxHeight = minCropBoxWidth / aspectRatio; + } else if (minCropBoxHeight) { + minCropBoxWidth = minCropBoxHeight * aspectRatio; + } + + if (maxCropBoxHeight * aspectRatio > maxCropBoxWidth) { + maxCropBoxHeight = maxCropBoxWidth / aspectRatio; + } else { + maxCropBoxWidth = maxCropBoxHeight * aspectRatio; + } + } // The minWidth/Height must be less than maxWidth/Height + + + cropBoxData.minWidth = Math.min(minCropBoxWidth, maxCropBoxWidth); + cropBoxData.minHeight = Math.min(minCropBoxHeight, maxCropBoxHeight); + cropBoxData.maxWidth = maxCropBoxWidth; + cropBoxData.maxHeight = maxCropBoxHeight; + } + + if (positionLimited) { + if (limited) { + cropBoxData.minLeft = Math.max(0, canvasData.left); + cropBoxData.minTop = Math.max(0, canvasData.top); + cropBoxData.maxLeft = Math.min(containerData.width, canvasData.left + canvasData.width) - cropBoxData.width; + cropBoxData.maxTop = Math.min(containerData.height, canvasData.top + canvasData.height) - cropBoxData.height; + } else { + cropBoxData.minLeft = 0; + cropBoxData.minTop = 0; + cropBoxData.maxLeft = containerData.width - cropBoxData.width; + cropBoxData.maxTop = containerData.height - cropBoxData.height; + } + } + }, + renderCropBox: function renderCropBox() { + var options = this.options, + containerData = this.containerData, + cropBoxData = this.cropBoxData; + + if (cropBoxData.width > cropBoxData.maxWidth || cropBoxData.width < cropBoxData.minWidth) { + cropBoxData.left = cropBoxData.oldLeft; + } + + if (cropBoxData.height > cropBoxData.maxHeight || cropBoxData.height < cropBoxData.minHeight) { + cropBoxData.top = cropBoxData.oldTop; + } + + cropBoxData.width = Math.min(Math.max(cropBoxData.width, cropBoxData.minWidth), cropBoxData.maxWidth); + cropBoxData.height = Math.min(Math.max(cropBoxData.height, cropBoxData.minHeight), cropBoxData.maxHeight); + this.limitCropBox(false, true); + cropBoxData.left = Math.min(Math.max(cropBoxData.left, cropBoxData.minLeft), cropBoxData.maxLeft); + cropBoxData.top = Math.min(Math.max(cropBoxData.top, cropBoxData.minTop), cropBoxData.maxTop); + cropBoxData.oldLeft = cropBoxData.left; + cropBoxData.oldTop = cropBoxData.top; + + if (options.movable && options.cropBoxMovable) { + // Turn to move the canvas when the crop box is equal to the container + setData(this.face, DATA_ACTION, cropBoxData.width >= containerData.width && cropBoxData.height >= containerData.height ? ACTION_MOVE : ACTION_ALL); + } + + setStyle(this.cropBox, assign({ + width: cropBoxData.width, + height: cropBoxData.height + }, getTransforms({ + translateX: cropBoxData.left, + translateY: cropBoxData.top + }))); + + if (this.cropped && this.limited) { + this.limitCanvas(true, true); + } + + if (!this.disabled) { + this.output(); + } + }, + output: function output() { + this.preview(); + dispatchEvent(this.element, EVENT_CROP, this.getData()); + } + }; + + var preview = { + initPreview: function initPreview() { + var element = this.element, + crossOrigin = this.crossOrigin; + var preview = this.options.preview; + var url = crossOrigin ? this.crossOriginUrl : this.url; + var alt = element.alt || 'The image to preview'; + var image = document.createElement('img'); + + if (crossOrigin) { + image.crossOrigin = crossOrigin; + } + + image.src = url; + image.alt = alt; + this.viewBox.appendChild(image); + this.viewBoxImage = image; + + if (!preview) { + return; + } + + var previews = preview; + + if (typeof preview === 'string') { + previews = element.ownerDocument.querySelectorAll(preview); + } else if (preview.querySelector) { + previews = [preview]; + } + + this.previews = previews; + forEach(previews, function (el) { + var img = document.createElement('img'); // Save the original size for recover + + setData(el, DATA_PREVIEW, { + width: el.offsetWidth, + height: el.offsetHeight, + html: el.innerHTML + }); + + if (crossOrigin) { + img.crossOrigin = crossOrigin; + } + + img.src = url; + img.alt = alt; + /** + * Override img element styles + * Add `display:block` to avoid margin top issue + * Add `height:auto` to override `height` attribute on IE8 + * (Occur only when margin-top <= -height) + */ + + img.style.cssText = 'display:block;' + 'width:100%;' + 'height:auto;' + 'min-width:0!important;' + 'min-height:0!important;' + 'max-width:none!important;' + 'max-height:none!important;' + 'image-orientation:0deg!important;"'; + el.innerHTML = ''; + el.appendChild(img); + }); + }, + resetPreview: function resetPreview() { + forEach(this.previews, function (element) { + var data = getData(element, DATA_PREVIEW); + setStyle(element, { + width: data.width, + height: data.height + }); + element.innerHTML = data.html; + removeData(element, DATA_PREVIEW); + }); + }, + preview: function preview() { + var imageData = this.imageData, + canvasData = this.canvasData, + cropBoxData = this.cropBoxData; + var cropBoxWidth = cropBoxData.width, + cropBoxHeight = cropBoxData.height; + var width = imageData.width, + height = imageData.height; + var left = cropBoxData.left - canvasData.left - imageData.left; + var top = cropBoxData.top - canvasData.top - imageData.top; + + if (!this.cropped || this.disabled) { + return; + } + + setStyle(this.viewBoxImage, assign({ + width: width, + height: height + }, getTransforms(assign({ + translateX: -left, + translateY: -top + }, imageData)))); + forEach(this.previews, function (element) { + var data = getData(element, DATA_PREVIEW); + var originalWidth = data.width; + var originalHeight = data.height; + var newWidth = originalWidth; + var newHeight = originalHeight; + var ratio = 1; + + if (cropBoxWidth) { + ratio = originalWidth / cropBoxWidth; + newHeight = cropBoxHeight * ratio; + } + + if (cropBoxHeight && newHeight > originalHeight) { + ratio = originalHeight / cropBoxHeight; + newWidth = cropBoxWidth * ratio; + newHeight = originalHeight; + } + + setStyle(element, { + width: newWidth, + height: newHeight + }); + setStyle(element.getElementsByTagName('img')[0], assign({ + width: width * ratio, + height: height * ratio + }, getTransforms(assign({ + translateX: -left * ratio, + translateY: -top * ratio + }, imageData)))); + }); + } + }; + + var events = { + bind: function bind() { + var element = this.element, + options = this.options, + cropper = this.cropper; + + if (isFunction(options.cropstart)) { + addListener(element, EVENT_CROP_START, options.cropstart); + } + + if (isFunction(options.cropmove)) { + addListener(element, EVENT_CROP_MOVE, options.cropmove); + } + + if (isFunction(options.cropend)) { + addListener(element, EVENT_CROP_END, options.cropend); + } + + if (isFunction(options.crop)) { + addListener(element, EVENT_CROP, options.crop); + } + + if (isFunction(options.zoom)) { + addListener(element, EVENT_ZOOM, options.zoom); + } + + addListener(cropper, EVENT_POINTER_DOWN, this.onCropStart = this.cropStart.bind(this)); + + if (options.zoomable && options.zoomOnWheel) { + addListener(cropper, EVENT_WHEEL, this.onWheel = this.wheel.bind(this), { + passive: false, + capture: true + }); + } + + if (options.toggleDragModeOnDblclick) { + addListener(cropper, EVENT_DBLCLICK, this.onDblclick = this.dblclick.bind(this)); + } + + addListener(element.ownerDocument, EVENT_POINTER_MOVE, this.onCropMove = this.cropMove.bind(this)); + addListener(element.ownerDocument, EVENT_POINTER_UP, this.onCropEnd = this.cropEnd.bind(this)); + + if (options.responsive) { + addListener(window, EVENT_RESIZE, this.onResize = this.resize.bind(this)); + } + }, + unbind: function unbind() { + var element = this.element, + options = this.options, + cropper = this.cropper; + + if (isFunction(options.cropstart)) { + removeListener(element, EVENT_CROP_START, options.cropstart); + } + + if (isFunction(options.cropmove)) { + removeListener(element, EVENT_CROP_MOVE, options.cropmove); + } + + if (isFunction(options.cropend)) { + removeListener(element, EVENT_CROP_END, options.cropend); + } + + if (isFunction(options.crop)) { + removeListener(element, EVENT_CROP, options.crop); + } + + if (isFunction(options.zoom)) { + removeListener(element, EVENT_ZOOM, options.zoom); + } + + removeListener(cropper, EVENT_POINTER_DOWN, this.onCropStart); + + if (options.zoomable && options.zoomOnWheel) { + removeListener(cropper, EVENT_WHEEL, this.onWheel, { + passive: false, + capture: true + }); + } + + if (options.toggleDragModeOnDblclick) { + removeListener(cropper, EVENT_DBLCLICK, this.onDblclick); + } + + removeListener(element.ownerDocument, EVENT_POINTER_MOVE, this.onCropMove); + removeListener(element.ownerDocument, EVENT_POINTER_UP, this.onCropEnd); + + if (options.responsive) { + removeListener(window, EVENT_RESIZE, this.onResize); + } + } + }; + + var handlers = { + resize: function resize() { + var options = this.options, + container = this.container, + containerData = this.containerData; + var minContainerWidth = Number(options.minContainerWidth) || MIN_CONTAINER_WIDTH; + var minContainerHeight = Number(options.minContainerHeight) || MIN_CONTAINER_HEIGHT; + + if (this.disabled || containerData.width <= minContainerWidth || containerData.height <= minContainerHeight) { + return; + } + + var ratio = container.offsetWidth / containerData.width; // Resize when width changed or height changed + + if (ratio !== 1 || container.offsetHeight !== containerData.height) { + var canvasData; + var cropBoxData; + + if (options.restore) { + canvasData = this.getCanvasData(); + cropBoxData = this.getCropBoxData(); + } + + this.render(); + + if (options.restore) { + this.setCanvasData(forEach(canvasData, function (n, i) { + canvasData[i] = n * ratio; + })); + this.setCropBoxData(forEach(cropBoxData, function (n, i) { + cropBoxData[i] = n * ratio; + })); + } + } + }, + dblclick: function dblclick() { + if (this.disabled || this.options.dragMode === DRAG_MODE_NONE) { + return; + } + + this.setDragMode(hasClass(this.dragBox, CLASS_CROP) ? DRAG_MODE_MOVE : DRAG_MODE_CROP); + }, + wheel: function wheel(event) { + var _this = this; + + var ratio = Number(this.options.wheelZoomRatio) || 0.1; + var delta = 1; + + if (this.disabled) { + return; + } + + event.preventDefault(); // Limit wheel speed to prevent zoom too fast (#21) + + if (this.wheeling) { + return; + } + + this.wheeling = true; + setTimeout(function () { + _this.wheeling = false; + }, 50); + + if (event.deltaY) { + delta = event.deltaY > 0 ? 1 : -1; + } else if (event.wheelDelta) { + delta = -event.wheelDelta / 120; + } else if (event.detail) { + delta = event.detail > 0 ? 1 : -1; + } + + this.zoom(-delta * ratio, event); + }, + cropStart: function cropStart(event) { + var buttons = event.buttons, + button = event.button; + + if (this.disabled // No primary button (Usually the left button) + // Note that touch events have no `buttons` or `button` property + || isNumber(buttons) && buttons !== 1 || isNumber(button) && button !== 0 // Open context menu + || event.ctrlKey) { + return; + } + + var options = this.options, + pointers = this.pointers; + var action; + + if (event.changedTouches) { + // Handle touch event + forEach(event.changedTouches, function (touch) { + pointers[touch.identifier] = getPointer(touch); + }); + } else { + // Handle mouse event and pointer event + pointers[event.pointerId || 0] = getPointer(event); + } + + if (Object.keys(pointers).length > 1 && options.zoomable && options.zoomOnTouch) { + action = ACTION_ZOOM; + } else { + action = getData(event.target, DATA_ACTION); + } + + if (!REGEXP_ACTIONS.test(action)) { + return; + } + + if (dispatchEvent(this.element, EVENT_CROP_START, { + originalEvent: event, + action: action + }) === false) { + return; + } // This line is required for preventing page zooming in iOS browsers + + + event.preventDefault(); + this.action = action; + this.cropping = false; + + if (action === ACTION_CROP) { + this.cropping = true; + addClass(this.dragBox, CLASS_MODAL); + } + }, + cropMove: function cropMove(event) { + var action = this.action; + + if (this.disabled || !action) { + return; + } + + var pointers = this.pointers; + event.preventDefault(); + + if (dispatchEvent(this.element, EVENT_CROP_MOVE, { + originalEvent: event, + action: action + }) === false) { + return; + } + + if (event.changedTouches) { + forEach(event.changedTouches, function (touch) { + // The first parameter should not be undefined (#432) + assign(pointers[touch.identifier] || {}, getPointer(touch, true)); + }); + } else { + assign(pointers[event.pointerId || 0] || {}, getPointer(event, true)); + } + + this.change(event); + }, + cropEnd: function cropEnd(event) { + if (this.disabled) { + return; + } + + var action = this.action, + pointers = this.pointers; + + if (event.changedTouches) { + forEach(event.changedTouches, function (touch) { + delete pointers[touch.identifier]; + }); + } else { + delete pointers[event.pointerId || 0]; + } + + if (!action) { + return; + } + + event.preventDefault(); + + if (!Object.keys(pointers).length) { + this.action = ''; + } + + if (this.cropping) { + this.cropping = false; + toggleClass(this.dragBox, CLASS_MODAL, this.cropped && this.options.modal); + } + + dispatchEvent(this.element, EVENT_CROP_END, { + originalEvent: event, + action: action + }); + } + }; + + var change = { + change: function change(event) { + var options = this.options, + canvasData = this.canvasData, + containerData = this.containerData, + cropBoxData = this.cropBoxData, + pointers = this.pointers; + var action = this.action; + var aspectRatio = options.aspectRatio; + var left = cropBoxData.left, + top = cropBoxData.top, + width = cropBoxData.width, + height = cropBoxData.height; + var right = left + width; + var bottom = top + height; + var minLeft = 0; + var minTop = 0; + var maxWidth = containerData.width; + var maxHeight = containerData.height; + var renderable = true; + var offset; // Locking aspect ratio in "free mode" by holding shift key + + if (!aspectRatio && event.shiftKey) { + aspectRatio = width && height ? width / height : 1; + } + + if (this.limited) { + minLeft = cropBoxData.minLeft; + minTop = cropBoxData.minTop; + maxWidth = minLeft + Math.min(containerData.width, canvasData.width, canvasData.left + canvasData.width); + maxHeight = minTop + Math.min(containerData.height, canvasData.height, canvasData.top + canvasData.height); + } + + var pointer = pointers[Object.keys(pointers)[0]]; + var range = { + x: pointer.endX - pointer.startX, + y: pointer.endY - pointer.startY + }; + + var check = function check(side) { + switch (side) { + case ACTION_EAST: + if (right + range.x > maxWidth) { + range.x = maxWidth - right; + } + + break; + + case ACTION_WEST: + if (left + range.x < minLeft) { + range.x = minLeft - left; + } + + break; + + case ACTION_NORTH: + if (top + range.y < minTop) { + range.y = minTop - top; + } + + break; + + case ACTION_SOUTH: + if (bottom + range.y > maxHeight) { + range.y = maxHeight - bottom; + } + + break; + + default: + } + }; + + switch (action) { + // Move crop box + case ACTION_ALL: + left += range.x; + top += range.y; + break; + // Resize crop box + + case ACTION_EAST: + if (range.x >= 0 && (right >= maxWidth || aspectRatio && (top <= minTop || bottom >= maxHeight))) { + renderable = false; + break; + } + + check(ACTION_EAST); + width += range.x; + + if (width < 0) { + action = ACTION_WEST; + width = -width; + left -= width; + } + + if (aspectRatio) { + height = width / aspectRatio; + top += (cropBoxData.height - height) / 2; + } + + break; + + case ACTION_NORTH: + if (range.y <= 0 && (top <= minTop || aspectRatio && (left <= minLeft || right >= maxWidth))) { + renderable = false; + break; + } + + check(ACTION_NORTH); + height -= range.y; + top += range.y; + + if (height < 0) { + action = ACTION_SOUTH; + height = -height; + top -= height; + } + + if (aspectRatio) { + width = height * aspectRatio; + left += (cropBoxData.width - width) / 2; + } + + break; + + case ACTION_WEST: + if (range.x <= 0 && (left <= minLeft || aspectRatio && (top <= minTop || bottom >= maxHeight))) { + renderable = false; + break; + } + + check(ACTION_WEST); + width -= range.x; + left += range.x; + + if (width < 0) { + action = ACTION_EAST; + width = -width; + left -= width; + } + + if (aspectRatio) { + height = width / aspectRatio; + top += (cropBoxData.height - height) / 2; + } + + break; + + case ACTION_SOUTH: + if (range.y >= 0 && (bottom >= maxHeight || aspectRatio && (left <= minLeft || right >= maxWidth))) { + renderable = false; + break; + } + + check(ACTION_SOUTH); + height += range.y; + + if (height < 0) { + action = ACTION_NORTH; + height = -height; + top -= height; + } + + if (aspectRatio) { + width = height * aspectRatio; + left += (cropBoxData.width - width) / 2; + } + + break; + + case ACTION_NORTH_EAST: + if (aspectRatio) { + if (range.y <= 0 && (top <= minTop || right >= maxWidth)) { + renderable = false; + break; + } + + check(ACTION_NORTH); + height -= range.y; + top += range.y; + width = height * aspectRatio; + } else { + check(ACTION_NORTH); + check(ACTION_EAST); + + if (range.x >= 0) { + if (right < maxWidth) { + width += range.x; + } else if (range.y <= 0 && top <= minTop) { + renderable = false; + } + } else { + width += range.x; + } + + if (range.y <= 0) { + if (top > minTop) { + height -= range.y; + top += range.y; + } + } else { + height -= range.y; + top += range.y; + } + } + + if (width < 0 && height < 0) { + action = ACTION_SOUTH_WEST; + height = -height; + width = -width; + top -= height; + left -= width; + } else if (width < 0) { + action = ACTION_NORTH_WEST; + width = -width; + left -= width; + } else if (height < 0) { + action = ACTION_SOUTH_EAST; + height = -height; + top -= height; + } + + break; + + case ACTION_NORTH_WEST: + if (aspectRatio) { + if (range.y <= 0 && (top <= minTop || left <= minLeft)) { + renderable = false; + break; + } + + check(ACTION_NORTH); + height -= range.y; + top += range.y; + width = height * aspectRatio; + left += cropBoxData.width - width; + } else { + check(ACTION_NORTH); + check(ACTION_WEST); + + if (range.x <= 0) { + if (left > minLeft) { + width -= range.x; + left += range.x; + } else if (range.y <= 0 && top <= minTop) { + renderable = false; + } + } else { + width -= range.x; + left += range.x; + } + + if (range.y <= 0) { + if (top > minTop) { + height -= range.y; + top += range.y; + } + } else { + height -= range.y; + top += range.y; + } + } + + if (width < 0 && height < 0) { + action = ACTION_SOUTH_EAST; + height = -height; + width = -width; + top -= height; + left -= width; + } else if (width < 0) { + action = ACTION_NORTH_EAST; + width = -width; + left -= width; + } else if (height < 0) { + action = ACTION_SOUTH_WEST; + height = -height; + top -= height; + } + + break; + + case ACTION_SOUTH_WEST: + if (aspectRatio) { + if (range.x <= 0 && (left <= minLeft || bottom >= maxHeight)) { + renderable = false; + break; + } + + check(ACTION_WEST); + width -= range.x; + left += range.x; + height = width / aspectRatio; + } else { + check(ACTION_SOUTH); + check(ACTION_WEST); + + if (range.x <= 0) { + if (left > minLeft) { + width -= range.x; + left += range.x; + } else if (range.y >= 0 && bottom >= maxHeight) { + renderable = false; + } + } else { + width -= range.x; + left += range.x; + } + + if (range.y >= 0) { + if (bottom < maxHeight) { + height += range.y; + } + } else { + height += range.y; + } + } + + if (width < 0 && height < 0) { + action = ACTION_NORTH_EAST; + height = -height; + width = -width; + top -= height; + left -= width; + } else if (width < 0) { + action = ACTION_SOUTH_EAST; + width = -width; + left -= width; + } else if (height < 0) { + action = ACTION_NORTH_WEST; + height = -height; + top -= height; + } + + break; + + case ACTION_SOUTH_EAST: + if (aspectRatio) { + if (range.x >= 0 && (right >= maxWidth || bottom >= maxHeight)) { + renderable = false; + break; + } + + check(ACTION_EAST); + width += range.x; + height = width / aspectRatio; + } else { + check(ACTION_SOUTH); + check(ACTION_EAST); + + if (range.x >= 0) { + if (right < maxWidth) { + width += range.x; + } else if (range.y >= 0 && bottom >= maxHeight) { + renderable = false; + } + } else { + width += range.x; + } + + if (range.y >= 0) { + if (bottom < maxHeight) { + height += range.y; + } + } else { + height += range.y; + } + } + + if (width < 0 && height < 0) { + action = ACTION_NORTH_WEST; + height = -height; + width = -width; + top -= height; + left -= width; + } else if (width < 0) { + action = ACTION_SOUTH_WEST; + width = -width; + left -= width; + } else if (height < 0) { + action = ACTION_NORTH_EAST; + height = -height; + top -= height; + } + + break; + // Move canvas + + case ACTION_MOVE: + this.move(range.x, range.y); + renderable = false; + break; + // Zoom canvas + + case ACTION_ZOOM: + this.zoom(getMaxZoomRatio(pointers), event); + renderable = false; + break; + // Create crop box + + case ACTION_CROP: + if (!range.x || !range.y) { + renderable = false; + break; + } + + offset = getOffset(this.cropper); + left = pointer.startX - offset.left; + top = pointer.startY - offset.top; + width = cropBoxData.minWidth; + height = cropBoxData.minHeight; + + if (range.x > 0) { + action = range.y > 0 ? ACTION_SOUTH_EAST : ACTION_NORTH_EAST; + } else if (range.x < 0) { + left -= width; + action = range.y > 0 ? ACTION_SOUTH_WEST : ACTION_NORTH_WEST; + } + + if (range.y < 0) { + top -= height; + } // Show the crop box if is hidden + + + if (!this.cropped) { + removeClass(this.cropBox, CLASS_HIDDEN); + this.cropped = true; + + if (this.limited) { + this.limitCropBox(true, true); + } + } + + break; + + default: + } + + if (renderable) { + cropBoxData.width = width; + cropBoxData.height = height; + cropBoxData.left = left; + cropBoxData.top = top; + this.action = action; + this.renderCropBox(); + } // Override + + + forEach(pointers, function (p) { + p.startX = p.endX; + p.startY = p.endY; + }); + } + }; + + var methods = { + // Show the crop box manually + crop: function crop() { + if (this.ready && !this.cropped && !this.disabled) { + this.cropped = true; + this.limitCropBox(true, true); + + if (this.options.modal) { + addClass(this.dragBox, CLASS_MODAL); + } + + removeClass(this.cropBox, CLASS_HIDDEN); + this.setCropBoxData(this.initialCropBoxData); + } + + return this; + }, + // Reset the image and crop box to their initial states + reset: function reset() { + if (this.ready && !this.disabled) { + this.imageData = assign({}, this.initialImageData); + this.canvasData = assign({}, this.initialCanvasData); + this.cropBoxData = assign({}, this.initialCropBoxData); + this.renderCanvas(); + + if (this.cropped) { + this.renderCropBox(); + } + } + + return this; + }, + // Clear the crop box + clear: function clear() { + if (this.cropped && !this.disabled) { + assign(this.cropBoxData, { + left: 0, + top: 0, + width: 0, + height: 0 + }); + this.cropped = false; + this.renderCropBox(); + this.limitCanvas(true, true); // Render canvas after crop box rendered + + this.renderCanvas(); + removeClass(this.dragBox, CLASS_MODAL); + addClass(this.cropBox, CLASS_HIDDEN); + } + + return this; + }, + + /** + * Replace the image's src and rebuild the cropper + * @param {string} url - The new URL. + * @param {boolean} [hasSameSize] - Indicate if the new image has the same size as the old one. + * @returns {Cropper} this + */ + replace: function replace(url) { + var hasSameSize = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + if (!this.disabled && url) { + if (this.isImg) { + this.element.src = url; + } + + if (hasSameSize) { + this.url = url; + this.image.src = url; + + if (this.ready) { + this.viewBoxImage.src = url; + forEach(this.previews, function (element) { + element.getElementsByTagName('img')[0].src = url; + }); + } + } else { + if (this.isImg) { + this.replaced = true; + } + + this.options.data = null; + this.uncreate(); + this.load(url); + } + } + + return this; + }, + // Enable (unfreeze) the cropper + enable: function enable() { + if (this.ready && this.disabled) { + this.disabled = false; + removeClass(this.cropper, CLASS_DISABLED); + } + + return this; + }, + // Disable (freeze) the cropper + disable: function disable() { + if (this.ready && !this.disabled) { + this.disabled = true; + addClass(this.cropper, CLASS_DISABLED); + } + + return this; + }, + + /** + * Destroy the cropper and remove the instance from the image + * @returns {Cropper} this + */ + destroy: function destroy() { + var element = this.element; + + if (!element[NAMESPACE]) { + return this; + } + + element[NAMESPACE] = undefined; + + if (this.isImg && this.replaced) { + element.src = this.originalUrl; + } + + this.uncreate(); + return this; + }, + + /** + * Move the canvas with relative offsets + * @param {number} offsetX - The relative offset distance on the x-axis. + * @param {number} [offsetY=offsetX] - The relative offset distance on the y-axis. + * @returns {Cropper} this + */ + move: function move(offsetX) { + var offsetY = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : offsetX; + var _this$canvasData = this.canvasData, + left = _this$canvasData.left, + top = _this$canvasData.top; + return this.moveTo(isUndefined(offsetX) ? offsetX : left + Number(offsetX), isUndefined(offsetY) ? offsetY : top + Number(offsetY)); + }, + + /** + * Move the canvas to an absolute point + * @param {number} x - The x-axis coordinate. + * @param {number} [y=x] - The y-axis coordinate. + * @returns {Cropper} this + */ + moveTo: function moveTo(x) { + var y = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : x; + var canvasData = this.canvasData; + var changed = false; + x = Number(x); + y = Number(y); + + if (this.ready && !this.disabled && this.options.movable) { + if (isNumber(x)) { + canvasData.left = x; + changed = true; + } + + if (isNumber(y)) { + canvasData.top = y; + changed = true; + } + + if (changed) { + this.renderCanvas(true); + } + } + + return this; + }, + + /** + * Zoom the canvas with a relative ratio + * @param {number} ratio - The target ratio. + * @param {Event} _originalEvent - The original event if any. + * @returns {Cropper} this + */ + zoom: function zoom(ratio, _originalEvent) { + var canvasData = this.canvasData; + ratio = Number(ratio); + + if (ratio < 0) { + ratio = 1 / (1 - ratio); + } else { + ratio = 1 + ratio; + } + + return this.zoomTo(canvasData.width * ratio / canvasData.naturalWidth, null, _originalEvent); + }, + + /** + * Zoom the canvas to an absolute ratio + * @param {number} ratio - The target ratio. + * @param {Object} pivot - The zoom pivot point coordinate. + * @param {Event} _originalEvent - The original event if any. + * @returns {Cropper} this + */ + zoomTo: function zoomTo(ratio, pivot, _originalEvent) { + var options = this.options, + canvasData = this.canvasData; + var width = canvasData.width, + height = canvasData.height, + naturalWidth = canvasData.naturalWidth, + naturalHeight = canvasData.naturalHeight; + ratio = Number(ratio); + + if (ratio >= 0 && this.ready && !this.disabled && options.zoomable) { + var newWidth = naturalWidth * ratio; + var newHeight = naturalHeight * ratio; + + if (dispatchEvent(this.element, EVENT_ZOOM, { + ratio: ratio, + oldRatio: width / naturalWidth, + originalEvent: _originalEvent + }) === false) { + return this; + } + + if (_originalEvent) { + var pointers = this.pointers; + var offset = getOffset(this.cropper); + var center = pointers && Object.keys(pointers).length ? getPointersCenter(pointers) : { + pageX: _originalEvent.pageX, + pageY: _originalEvent.pageY + }; // Zoom from the triggering point of the event + + canvasData.left -= (newWidth - width) * ((center.pageX - offset.left - canvasData.left) / width); + canvasData.top -= (newHeight - height) * ((center.pageY - offset.top - canvasData.top) / height); + } else if (isPlainObject(pivot) && isNumber(pivot.x) && isNumber(pivot.y)) { + canvasData.left -= (newWidth - width) * ((pivot.x - canvasData.left) / width); + canvasData.top -= (newHeight - height) * ((pivot.y - canvasData.top) / height); + } else { + // Zoom from the center of the canvas + canvasData.left -= (newWidth - width) / 2; + canvasData.top -= (newHeight - height) / 2; + } + + canvasData.width = newWidth; + canvasData.height = newHeight; + this.renderCanvas(true); + } + + return this; + }, + + /** + * Rotate the canvas with a relative degree + * @param {number} degree - The rotate degree. + * @returns {Cropper} this + */ + rotate: function rotate(degree) { + return this.rotateTo((this.imageData.rotate || 0) + Number(degree)); + }, + + /** + * Rotate the canvas to an absolute degree + * @param {number} degree - The rotate degree. + * @returns {Cropper} this + */ + rotateTo: function rotateTo(degree) { + degree = Number(degree); + + if (isNumber(degree) && this.ready && !this.disabled && this.options.rotatable) { + this.imageData.rotate = degree % 360; + this.renderCanvas(true, true); + } + + return this; + }, + + /** + * Scale the image on the x-axis. + * @param {number} scaleX - The scale ratio on the x-axis. + * @returns {Cropper} this + */ + scaleX: function scaleX(_scaleX) { + var scaleY = this.imageData.scaleY; + return this.scale(_scaleX, isNumber(scaleY) ? scaleY : 1); + }, + + /** + * Scale the image on the y-axis. + * @param {number} scaleY - The scale ratio on the y-axis. + * @returns {Cropper} this + */ + scaleY: function scaleY(_scaleY) { + var scaleX = this.imageData.scaleX; + return this.scale(isNumber(scaleX) ? scaleX : 1, _scaleY); + }, + + /** + * Scale the image + * @param {number} scaleX - The scale ratio on the x-axis. + * @param {number} [scaleY=scaleX] - The scale ratio on the y-axis. + * @returns {Cropper} this + */ + scale: function scale(scaleX) { + var scaleY = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : scaleX; + var imageData = this.imageData; + var transformed = false; + scaleX = Number(scaleX); + scaleY = Number(scaleY); + + if (this.ready && !this.disabled && this.options.scalable) { + if (isNumber(scaleX)) { + imageData.scaleX = scaleX; + transformed = true; + } + + if (isNumber(scaleY)) { + imageData.scaleY = scaleY; + transformed = true; + } + + if (transformed) { + this.renderCanvas(true, true); + } + } + + return this; + }, + + /** + * Get the cropped area position and size data (base on the original image) + * @param {boolean} [rounded=false] - Indicate if round the data values or not. + * @returns {Object} The result cropped data. + */ + getData: function getData() { + var rounded = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; + var options = this.options, + imageData = this.imageData, + canvasData = this.canvasData, + cropBoxData = this.cropBoxData; + var data; + + if (this.ready && this.cropped) { + data = { + x: cropBoxData.left - canvasData.left, + y: cropBoxData.top - canvasData.top, + width: cropBoxData.width, + height: cropBoxData.height + }; + var ratio = imageData.width / imageData.naturalWidth; + forEach(data, function (n, i) { + data[i] = n / ratio; + }); + + if (rounded) { + // In case rounding off leads to extra 1px in right or bottom border + // we should round the top-left corner and the dimension (#343). + var bottom = Math.round(data.y + data.height); + var right = Math.round(data.x + data.width); + data.x = Math.round(data.x); + data.y = Math.round(data.y); + data.width = right - data.x; + data.height = bottom - data.y; + } + } else { + data = { + x: 0, + y: 0, + width: 0, + height: 0 + }; + } + + if (options.rotatable) { + data.rotate = imageData.rotate || 0; + } + + if (options.scalable) { + data.scaleX = imageData.scaleX || 1; + data.scaleY = imageData.scaleY || 1; + } + + return data; + }, + + /** + * Set the cropped area position and size with new data + * @param {Object} data - The new data. + * @returns {Cropper} this + */ + setData: function setData(data) { + var options = this.options, + imageData = this.imageData, + canvasData = this.canvasData; + var cropBoxData = {}; + + if (this.ready && !this.disabled && isPlainObject(data)) { + var transformed = false; + + if (options.rotatable) { + if (isNumber(data.rotate) && data.rotate !== imageData.rotate) { + imageData.rotate = data.rotate; + transformed = true; + } + } + + if (options.scalable) { + if (isNumber(data.scaleX) && data.scaleX !== imageData.scaleX) { + imageData.scaleX = data.scaleX; + transformed = true; + } + + if (isNumber(data.scaleY) && data.scaleY !== imageData.scaleY) { + imageData.scaleY = data.scaleY; + transformed = true; + } + } + + if (transformed) { + this.renderCanvas(true, true); + } + + var ratio = imageData.width / imageData.naturalWidth; + + if (isNumber(data.x)) { + cropBoxData.left = data.x * ratio + canvasData.left; + } + + if (isNumber(data.y)) { + cropBoxData.top = data.y * ratio + canvasData.top; + } + + if (isNumber(data.width)) { + cropBoxData.width = data.width * ratio; + } + + if (isNumber(data.height)) { + cropBoxData.height = data.height * ratio; + } + + this.setCropBoxData(cropBoxData); + } + + return this; + }, + + /** + * Get the container size data. + * @returns {Object} The result container data. + */ + getContainerData: function getContainerData() { + return this.ready ? assign({}, this.containerData) : {}; + }, + + /** + * Get the image position and size data. + * @returns {Object} The result image data. + */ + getImageData: function getImageData() { + return this.sized ? assign({}, this.imageData) : {}; + }, + + /** + * Get the canvas position and size data. + * @returns {Object} The result canvas data. + */ + getCanvasData: function getCanvasData() { + var canvasData = this.canvasData; + var data = {}; + + if (this.ready) { + forEach(['left', 'top', 'width', 'height', 'naturalWidth', 'naturalHeight'], function (n) { + data[n] = canvasData[n]; + }); + } + + return data; + }, + + /** + * Set the canvas position and size with new data. + * @param {Object} data - The new canvas data. + * @returns {Cropper} this + */ + setCanvasData: function setCanvasData(data) { + var canvasData = this.canvasData; + var aspectRatio = canvasData.aspectRatio; + + if (this.ready && !this.disabled && isPlainObject(data)) { + if (isNumber(data.left)) { + canvasData.left = data.left; + } + + if (isNumber(data.top)) { + canvasData.top = data.top; + } + + if (isNumber(data.width)) { + canvasData.width = data.width; + canvasData.height = data.width / aspectRatio; + } else if (isNumber(data.height)) { + canvasData.height = data.height; + canvasData.width = data.height * aspectRatio; + } + + this.renderCanvas(true); + } + + return this; + }, + + /** + * Get the crop box position and size data. + * @returns {Object} The result crop box data. + */ + getCropBoxData: function getCropBoxData() { + var cropBoxData = this.cropBoxData; + var data; + + if (this.ready && this.cropped) { + data = { + left: cropBoxData.left, + top: cropBoxData.top, + width: cropBoxData.width, + height: cropBoxData.height + }; + } + + return data || {}; + }, + + /** + * Set the crop box position and size with new data. + * @param {Object} data - The new crop box data. + * @returns {Cropper} this + */ + setCropBoxData: function setCropBoxData(data) { + var cropBoxData = this.cropBoxData; + var aspectRatio = this.options.aspectRatio; + var widthChanged; + var heightChanged; + + if (this.ready && this.cropped && !this.disabled && isPlainObject(data)) { + if (isNumber(data.left)) { + cropBoxData.left = data.left; + } + + if (isNumber(data.top)) { + cropBoxData.top = data.top; + } + + if (isNumber(data.width) && data.width !== cropBoxData.width) { + widthChanged = true; + cropBoxData.width = data.width; + } + + if (isNumber(data.height) && data.height !== cropBoxData.height) { + heightChanged = true; + cropBoxData.height = data.height; + } + + if (aspectRatio) { + if (widthChanged) { + cropBoxData.height = cropBoxData.width / aspectRatio; + } else if (heightChanged) { + cropBoxData.width = cropBoxData.height * aspectRatio; + } + } + + this.renderCropBox(); + } + + return this; + }, + + /** + * Get a canvas drawn the cropped image. + * @param {Object} [options={}] - The config options. + * @returns {HTMLCanvasElement} - The result canvas. + */ + getCroppedCanvas: function getCroppedCanvas() { + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (!this.ready || !window.HTMLCanvasElement) { + return null; + } + + var canvasData = this.canvasData; + var source = getSourceCanvas(this.image, this.imageData, canvasData, options); // Returns the source canvas if it is not cropped. + + if (!this.cropped) { + return source; + } + + var _this$getData = this.getData(), + initialX = _this$getData.x, + initialY = _this$getData.y, + initialWidth = _this$getData.width, + initialHeight = _this$getData.height; + + var ratio = source.width / Math.floor(canvasData.naturalWidth); + + if (ratio !== 1) { + initialX *= ratio; + initialY *= ratio; + initialWidth *= ratio; + initialHeight *= ratio; + } + + var aspectRatio = initialWidth / initialHeight; + var maxSizes = getAdjustedSizes({ + aspectRatio: aspectRatio, + width: options.maxWidth || Infinity, + height: options.maxHeight || Infinity + }); + var minSizes = getAdjustedSizes({ + aspectRatio: aspectRatio, + width: options.minWidth || 0, + height: options.minHeight || 0 + }, 'cover'); + + var _getAdjustedSizes = getAdjustedSizes({ + aspectRatio: aspectRatio, + width: options.width || (ratio !== 1 ? source.width : initialWidth), + height: options.height || (ratio !== 1 ? source.height : initialHeight) + }), + width = _getAdjustedSizes.width, + height = _getAdjustedSizes.height; + + width = Math.min(maxSizes.width, Math.max(minSizes.width, width)); + height = Math.min(maxSizes.height, Math.max(minSizes.height, height)); + var canvas = document.createElement('canvas'); + var context = canvas.getContext('2d'); + canvas.width = normalizeDecimalNumber(width); + canvas.height = normalizeDecimalNumber(height); + context.fillStyle = options.fillColor || 'transparent'; + context.fillRect(0, 0, width, height); + var _options$imageSmoothi = options.imageSmoothingEnabled, + imageSmoothingEnabled = _options$imageSmoothi === void 0 ? true : _options$imageSmoothi, + imageSmoothingQuality = options.imageSmoothingQuality; + context.imageSmoothingEnabled = imageSmoothingEnabled; + + if (imageSmoothingQuality) { + context.imageSmoothingQuality = imageSmoothingQuality; + } // https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D.drawImage + + + var sourceWidth = source.width; + var sourceHeight = source.height; // Source canvas parameters + + var srcX = initialX; + var srcY = initialY; + var srcWidth; + var srcHeight; // Destination canvas parameters + + var dstX; + var dstY; + var dstWidth; + var dstHeight; + + if (srcX <= -initialWidth || srcX > sourceWidth) { + srcX = 0; + srcWidth = 0; + dstX = 0; + dstWidth = 0; + } else if (srcX <= 0) { + dstX = -srcX; + srcX = 0; + srcWidth = Math.min(sourceWidth, initialWidth + srcX); + dstWidth = srcWidth; + } else if (srcX <= sourceWidth) { + dstX = 0; + srcWidth = Math.min(initialWidth, sourceWidth - srcX); + dstWidth = srcWidth; + } + + if (srcWidth <= 0 || srcY <= -initialHeight || srcY > sourceHeight) { + srcY = 0; + srcHeight = 0; + dstY = 0; + dstHeight = 0; + } else if (srcY <= 0) { + dstY = -srcY; + srcY = 0; + srcHeight = Math.min(sourceHeight, initialHeight + srcY); + dstHeight = srcHeight; + } else if (srcY <= sourceHeight) { + dstY = 0; + srcHeight = Math.min(initialHeight, sourceHeight - srcY); + dstHeight = srcHeight; + } + + var params = [srcX, srcY, srcWidth, srcHeight]; // Avoid "IndexSizeError" + + if (dstWidth > 0 && dstHeight > 0) { + var scale = width / initialWidth; + params.push(dstX * scale, dstY * scale, dstWidth * scale, dstHeight * scale); + } // All the numerical parameters should be integer for `drawImage` + // https://github.com/fengyuanchen/cropper/issues/476 + + + context.drawImage.apply(context, [source].concat(_toConsumableArray(params.map(function (param) { + return Math.floor(normalizeDecimalNumber(param)); + })))); + return canvas; + }, + + /** + * Change the aspect ratio of the crop box. + * @param {number} aspectRatio - The new aspect ratio. + * @returns {Cropper} this + */ + setAspectRatio: function setAspectRatio(aspectRatio) { + var options = this.options; + + if (!this.disabled && !isUndefined(aspectRatio)) { + // 0 -> NaN + options.aspectRatio = Math.max(0, aspectRatio) || NaN; + + if (this.ready) { + this.initCropBox(); + + if (this.cropped) { + this.renderCropBox(); + } + } + } + + return this; + }, + + /** + * Change the drag mode. + * @param {string} mode - The new drag mode. + * @returns {Cropper} this + */ + setDragMode: function setDragMode(mode) { + var options = this.options, + dragBox = this.dragBox, + face = this.face; + + if (this.ready && !this.disabled) { + var croppable = mode === DRAG_MODE_CROP; + var movable = options.movable && mode === DRAG_MODE_MOVE; + mode = croppable || movable ? mode : DRAG_MODE_NONE; + options.dragMode = mode; + setData(dragBox, DATA_ACTION, mode); + toggleClass(dragBox, CLASS_CROP, croppable); + toggleClass(dragBox, CLASS_MOVE, movable); + + if (!options.cropBoxMovable) { + // Sync drag mode to crop box when it is not movable + setData(face, DATA_ACTION, mode); + toggleClass(face, CLASS_CROP, croppable); + toggleClass(face, CLASS_MOVE, movable); + } + } + + return this; + } + }; + + var AnotherCropper = WINDOW.Cropper; + + var Cropper = + /*#__PURE__*/ + function () { + /** + * Create a new Cropper. + * @param {Element} element - The target element for cropping. + * @param {Object} [options={}] - The configuration options. + */ + function Cropper(element) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + _classCallCheck(this, Cropper); + + if (!element || !REGEXP_TAG_NAME.test(element.tagName)) { + throw new Error('The first argument is required and must be an or element.'); + } + + this.element = element; + this.options = assign({}, DEFAULTS, isPlainObject(options) && options); + this.cropped = false; + this.disabled = false; + this.pointers = {}; + this.ready = false; + this.reloading = false; + this.replaced = false; + this.sized = false; + this.sizing = false; + this.init(); + } + + _createClass(Cropper, [{ + key: "init", + value: function init() { + var element = this.element; + var tagName = element.tagName.toLowerCase(); + var url; + + if (element[NAMESPACE]) { + return; + } + + element[NAMESPACE] = this; + + if (tagName === 'img') { + this.isImg = true; // e.g.: "img/picture.jpg" + + url = element.getAttribute('src') || ''; + this.originalUrl = url; // Stop when it's a blank image + + if (!url) { + return; + } // e.g.: "http://example.com/img/picture.jpg" + + + url = element.src; + } else if (tagName === 'canvas' && window.HTMLCanvasElement) { + url = element.toDataURL(); + } + + this.load(url); + } + }, { + key: "load", + value: function load(url) { + var _this = this; + + if (!url) { + return; + } + + this.url = url; + this.imageData = {}; + var element = this.element, + options = this.options; + + if (!options.rotatable && !options.scalable) { + options.checkOrientation = false; + } // Only IE10+ supports Typed Arrays + + + if (!options.checkOrientation || !window.ArrayBuffer) { + this.clone(); + return; + } // Detect the mime type of the image directly if it is a Data URL + + + if (REGEXP_DATA_URL.test(url)) { + // Read ArrayBuffer from Data URL of JPEG images directly for better performance + if (REGEXP_DATA_URL_JPEG.test(url)) { + this.read(dataURLToArrayBuffer(url)); + } else { + // Only a JPEG image may contains Exif Orientation information, + // the rest types of Data URLs are not necessary to check orientation at all. + this.clone(); + } + + return; + } // 1. Detect the mime type of the image by a XMLHttpRequest. + // 2. Load the image as ArrayBuffer for reading orientation if its a JPEG image. + + + var xhr = new XMLHttpRequest(); + var clone = this.clone.bind(this); + this.reloading = true; + this.xhr = xhr; // 1. Cross origin requests are only supported for protocol schemes: + // http, https, data, chrome, chrome-extension. + // 2. Access to XMLHttpRequest from a Data URL will be blocked by CORS policy + // in some browsers as IE11 and Safari. + + xhr.onabort = clone; + xhr.onerror = clone; + xhr.ontimeout = clone; + + xhr.onprogress = function () { + // Abort the request directly if it not a JPEG image for better performance + if (xhr.getResponseHeader('content-type') !== MIME_TYPE_JPEG) { + xhr.abort(); + } + }; + + xhr.onload = function () { + _this.read(xhr.response); + }; + + xhr.onloadend = function () { + _this.reloading = false; + _this.xhr = null; + }; // Bust cache when there is a "crossOrigin" property to avoid browser cache error + + + if (options.checkCrossOrigin && isCrossOriginURL(url) && element.crossOrigin) { + url = addTimestamp(url); + } + + xhr.open('GET', url); + xhr.responseType = 'arraybuffer'; + xhr.withCredentials = element.crossOrigin === 'use-credentials'; + xhr.send(); + } + }, { + key: "read", + value: function read(arrayBuffer) { + var options = this.options, + imageData = this.imageData; // Reset the orientation value to its default value 1 + // as some iOS browsers will render image with its orientation + + var orientation = resetAndGetOrientation(arrayBuffer); + var rotate = 0; + var scaleX = 1; + var scaleY = 1; + + if (orientation > 1) { + // Generate a new URL which has the default orientation value + this.url = arrayBufferToDataURL(arrayBuffer, MIME_TYPE_JPEG); + + var _parseOrientation = parseOrientation(orientation); + + rotate = _parseOrientation.rotate; + scaleX = _parseOrientation.scaleX; + scaleY = _parseOrientation.scaleY; + } + + if (options.rotatable) { + imageData.rotate = rotate; + } + + if (options.scalable) { + imageData.scaleX = scaleX; + imageData.scaleY = scaleY; + } + + this.clone(); + } + }, { + key: "clone", + value: function clone() { + var element = this.element, + url = this.url; + var crossOrigin = element.crossOrigin; + var crossOriginUrl = url; + + if (this.options.checkCrossOrigin && isCrossOriginURL(url)) { + if (!crossOrigin) { + crossOrigin = 'anonymous'; + } // Bust cache when there is not a "crossOrigin" property (#519) + + + crossOriginUrl = addTimestamp(url); + } + + this.crossOrigin = crossOrigin; + this.crossOriginUrl = crossOriginUrl; + var image = document.createElement('img'); + + if (crossOrigin) { + image.crossOrigin = crossOrigin; + } + + image.src = crossOriginUrl || url; + image.alt = element.alt || 'The image to crop'; + this.image = image; + image.onload = this.start.bind(this); + image.onerror = this.stop.bind(this); + addClass(image, CLASS_HIDE); + element.parentNode.insertBefore(image, element.nextSibling); + } + }, { + key: "start", + value: function start() { + var _this2 = this; + + var image = this.image; + image.onload = null; + image.onerror = null; + this.sizing = true; // Match all browsers that use WebKit as the layout engine in iOS devices, + // such as Safari for iOS, Chrome for iOS, and in-app browsers. + + var isIOSWebKit = WINDOW.navigator && /(?:iPad|iPhone|iPod).*?AppleWebKit/i.test(WINDOW.navigator.userAgent); + + var done = function done(naturalWidth, naturalHeight) { + assign(_this2.imageData, { + naturalWidth: naturalWidth, + naturalHeight: naturalHeight, + aspectRatio: naturalWidth / naturalHeight + }); + _this2.sizing = false; + _this2.sized = true; + + _this2.build(); + }; // Most modern browsers (excepts iOS WebKit) + + + if (image.naturalWidth && !isIOSWebKit) { + done(image.naturalWidth, image.naturalHeight); + return; + } + + var sizingImage = document.createElement('img'); + var body = document.body || document.documentElement; + this.sizingImage = sizingImage; + + sizingImage.onload = function () { + done(sizingImage.width, sizingImage.height); + + if (!isIOSWebKit) { + body.removeChild(sizingImage); + } + }; + + sizingImage.src = image.src; // iOS WebKit will convert the image automatically + // with its orientation once append it into DOM (#279) + + if (!isIOSWebKit) { + sizingImage.style.cssText = 'left:0;' + 'max-height:none!important;' + 'max-width:none!important;' + 'min-height:0!important;' + 'min-width:0!important;' + 'opacity:0;' + 'position:absolute;' + 'top:0;' + 'z-index:-1;'; + body.appendChild(sizingImage); + } + } + }, { + key: "stop", + value: function stop() { + var image = this.image; + image.onload = null; + image.onerror = null; + image.parentNode.removeChild(image); + this.image = null; + } + }, { + key: "build", + value: function build() { + if (!this.sized || this.ready) { + return; + } + + var element = this.element, + options = this.options, + image = this.image; // Create cropper elements + + var container = element.parentNode; + var template = document.createElement('div'); + template.innerHTML = TEMPLATE; + var cropper = template.querySelector(".".concat(NAMESPACE, "-container")); + var canvas = cropper.querySelector(".".concat(NAMESPACE, "-canvas")); + var dragBox = cropper.querySelector(".".concat(NAMESPACE, "-drag-box")); + var cropBox = cropper.querySelector(".".concat(NAMESPACE, "-crop-box")); + var face = cropBox.querySelector(".".concat(NAMESPACE, "-face")); + this.container = container; + this.cropper = cropper; + this.canvas = canvas; + this.dragBox = dragBox; + this.cropBox = cropBox; + this.viewBox = cropper.querySelector(".".concat(NAMESPACE, "-view-box")); + this.face = face; + canvas.appendChild(image); // Hide the original image + + addClass(element, CLASS_HIDDEN); // Inserts the cropper after to the current image + + container.insertBefore(cropper, element.nextSibling); // Show the image if is hidden + + if (!this.isImg) { + removeClass(image, CLASS_HIDE); + } + + this.initPreview(); + this.bind(); + options.initialAspectRatio = Math.max(0, options.initialAspectRatio) || NaN; + options.aspectRatio = Math.max(0, options.aspectRatio) || NaN; + options.viewMode = Math.max(0, Math.min(3, Math.round(options.viewMode))) || 0; + addClass(cropBox, CLASS_HIDDEN); + + if (!options.guides) { + addClass(cropBox.getElementsByClassName("".concat(NAMESPACE, "-dashed")), CLASS_HIDDEN); + } + + if (!options.center) { + addClass(cropBox.getElementsByClassName("".concat(NAMESPACE, "-center")), CLASS_HIDDEN); + } + + if (options.background) { + addClass(cropper, "".concat(NAMESPACE, "-bg")); + } + + if (!options.highlight) { + addClass(face, CLASS_INVISIBLE); + } + + if (options.cropBoxMovable) { + addClass(face, CLASS_MOVE); + setData(face, DATA_ACTION, ACTION_ALL); + } + + if (!options.cropBoxResizable) { + addClass(cropBox.getElementsByClassName("".concat(NAMESPACE, "-line")), CLASS_HIDDEN); + addClass(cropBox.getElementsByClassName("".concat(NAMESPACE, "-point")), CLASS_HIDDEN); + } + + this.render(); + this.ready = true; + this.setDragMode(options.dragMode); + + if (options.autoCrop) { + this.crop(); + } + + this.setData(options.data); + + if (isFunction(options.ready)) { + addListener(element, EVENT_READY, options.ready, { + once: true + }); + } + + dispatchEvent(element, EVENT_READY); + } + }, { + key: "unbuild", + value: function unbuild() { + if (!this.ready) { + return; + } + + this.ready = false; + this.unbind(); + this.resetPreview(); + this.cropper.parentNode.removeChild(this.cropper); + removeClass(this.element, CLASS_HIDDEN); + } + }, { + key: "uncreate", + value: function uncreate() { + if (this.ready) { + this.unbuild(); + this.ready = false; + this.cropped = false; + } else if (this.sizing) { + this.sizingImage.onload = null; + this.sizing = false; + this.sized = false; + } else if (this.reloading) { + this.xhr.onabort = null; + this.xhr.abort(); + } else if (this.image) { + this.stop(); + } + } + /** + * Get the no conflict cropper class. + * @returns {Cropper} The cropper class. + */ + + }], [{ + key: "noConflict", + value: function noConflict() { + window.Cropper = AnotherCropper; + return Cropper; + } + /** + * Change the default options. + * @param {Object} options - The new default options. + */ + + }, { + key: "setDefaults", + value: function setDefaults(options) { + assign(DEFAULTS, isPlainObject(options) && options); + } + }]); + + return Cropper; + }(); + + assign(Cropper.prototype, render, preview, events, handlers, change, methods); + + return Cropper; + +})); diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/html2canvas.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/html2canvas.js new file mode 100644 index 0000000..ed7442b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/lib/html2canvas.js @@ -0,0 +1,7830 @@ +/*! + * html2canvas 1.4.1 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.html2canvas = factory()); +}(this, (function () { 'use strict'; + + /*! ***************************************************************************** + Copyright (c) Microsoft Corporation. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + ***************************************************************************** */ + /* global Reflect, Promise */ + + var extendStatics = function(d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + + function __extends(d, b) { + if (typeof b !== "function" && b !== null) + throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + } + + var __assign = function() { + __assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); + }; + + function __awaiter(thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); + } + + function __generator(thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } + } + + function __spreadArray(to, from, pack) { + if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { + if (ar || !(i in from)) { + if (!ar) ar = Array.prototype.slice.call(from, 0, i); + ar[i] = from[i]; + } + } + return to.concat(ar || from); + } + + var Bounds = /** @class */ (function () { + function Bounds(left, top, width, height) { + this.left = left; + this.top = top; + this.width = width; + this.height = height; + } + Bounds.prototype.add = function (x, y, w, h) { + return new Bounds(this.left + x, this.top + y, this.width + w, this.height + h); + }; + Bounds.fromClientRect = function (context, clientRect) { + return new Bounds(clientRect.left + context.windowBounds.left, clientRect.top + context.windowBounds.top, clientRect.width, clientRect.height); + }; + Bounds.fromDOMRectList = function (context, domRectList) { + var domRect = Array.from(domRectList).find(function (rect) { return rect.width !== 0; }); + return domRect + ? new Bounds(domRect.left + context.windowBounds.left, domRect.top + context.windowBounds.top, domRect.width, domRect.height) + : Bounds.EMPTY; + }; + Bounds.EMPTY = new Bounds(0, 0, 0, 0); + return Bounds; + }()); + var parseBounds = function (context, node) { + return Bounds.fromClientRect(context, node.getBoundingClientRect()); + }; + var parseDocumentSize = function (document) { + var body = document.body; + var documentElement = document.documentElement; + if (!body || !documentElement) { + throw new Error("Unable to get document size"); + } + var width = Math.max(Math.max(body.scrollWidth, documentElement.scrollWidth), Math.max(body.offsetWidth, documentElement.offsetWidth), Math.max(body.clientWidth, documentElement.clientWidth)); + var height = Math.max(Math.max(body.scrollHeight, documentElement.scrollHeight), Math.max(body.offsetHeight, documentElement.offsetHeight), Math.max(body.clientHeight, documentElement.clientHeight)); + return new Bounds(0, 0, width, height); + }; + + /* + * css-line-break 2.1.0 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ + var toCodePoints$1 = function (str) { + var codePoints = []; + var i = 0; + var length = str.length; + while (i < length) { + var value = str.charCodeAt(i++); + if (value >= 0xd800 && value <= 0xdbff && i < length) { + var extra = str.charCodeAt(i++); + if ((extra & 0xfc00) === 0xdc00) { + codePoints.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000); + } + else { + codePoints.push(value); + i--; + } + } + else { + codePoints.push(value); + } + } + return codePoints; + }; + var fromCodePoint$1 = function () { + var codePoints = []; + for (var _i = 0; _i < arguments.length; _i++) { + codePoints[_i] = arguments[_i]; + } + if (String.fromCodePoint) { + return String.fromCodePoint.apply(String, codePoints); + } + var length = codePoints.length; + if (!length) { + return ''; + } + var codeUnits = []; + var index = -1; + var result = ''; + while (++index < length) { + var codePoint = codePoints[index]; + if (codePoint <= 0xffff) { + codeUnits.push(codePoint); + } + else { + codePoint -= 0x10000; + codeUnits.push((codePoint >> 10) + 0xd800, (codePoint % 0x400) + 0xdc00); + } + if (index + 1 === length || codeUnits.length > 0x4000) { + result += String.fromCharCode.apply(String, codeUnits); + codeUnits.length = 0; + } + } + return result; + }; + var chars$2 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + var lookup$2 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (var i$2 = 0; i$2 < chars$2.length; i$2++) { + lookup$2[chars$2.charCodeAt(i$2)] = i$2; + } + + /* + * utrie 1.0.2 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ + var chars$1$1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + var lookup$1$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (var i$1$1 = 0; i$1$1 < chars$1$1.length; i$1$1++) { + lookup$1$1[chars$1$1.charCodeAt(i$1$1)] = i$1$1; + } + var decode$1 = function (base64) { + var bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4; + if (base64[base64.length - 1] === '=') { + bufferLength--; + if (base64[base64.length - 2] === '=') { + bufferLength--; + } + } + var buffer = typeof ArrayBuffer !== 'undefined' && + typeof Uint8Array !== 'undefined' && + typeof Uint8Array.prototype.slice !== 'undefined' + ? new ArrayBuffer(bufferLength) + : new Array(bufferLength); + var bytes = Array.isArray(buffer) ? buffer : new Uint8Array(buffer); + for (i = 0; i < len; i += 4) { + encoded1 = lookup$1$1[base64.charCodeAt(i)]; + encoded2 = lookup$1$1[base64.charCodeAt(i + 1)]; + encoded3 = lookup$1$1[base64.charCodeAt(i + 2)]; + encoded4 = lookup$1$1[base64.charCodeAt(i + 3)]; + bytes[p++] = (encoded1 << 2) | (encoded2 >> 4); + bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2); + bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63); + } + return buffer; + }; + var polyUint16Array$1 = function (buffer) { + var length = buffer.length; + var bytes = []; + for (var i = 0; i < length; i += 2) { + bytes.push((buffer[i + 1] << 8) | buffer[i]); + } + return bytes; + }; + var polyUint32Array$1 = function (buffer) { + var length = buffer.length; + var bytes = []; + for (var i = 0; i < length; i += 4) { + bytes.push((buffer[i + 3] << 24) | (buffer[i + 2] << 16) | (buffer[i + 1] << 8) | buffer[i]); + } + return bytes; + }; + + /** Shift size for getting the index-2 table offset. */ + var UTRIE2_SHIFT_2$1 = 5; + /** Shift size for getting the index-1 table offset. */ + var UTRIE2_SHIFT_1$1 = 6 + 5; + /** + * Shift size for shifting left the index array values. + * Increases possible data size with 16-bit index values at the cost + * of compactability. + * This requires data blocks to be aligned by UTRIE2_DATA_GRANULARITY. + */ + var UTRIE2_INDEX_SHIFT$1 = 2; + /** + * Difference between the two shift sizes, + * for getting an index-1 offset from an index-2 offset. 6=11-5 + */ + var UTRIE2_SHIFT_1_2$1 = UTRIE2_SHIFT_1$1 - UTRIE2_SHIFT_2$1; + /** + * The part of the index-2 table for U+D800..U+DBFF stores values for + * lead surrogate code _units_ not code _points_. + * Values for lead surrogate code _points_ are indexed with this portion of the table. + * Length=32=0x20=0x400>>UTRIE2_SHIFT_2. (There are 1024=0x400 lead surrogates.) + */ + var UTRIE2_LSCP_INDEX_2_OFFSET$1 = 0x10000 >> UTRIE2_SHIFT_2$1; + /** Number of entries in a data block. 32=0x20 */ + var UTRIE2_DATA_BLOCK_LENGTH$1 = 1 << UTRIE2_SHIFT_2$1; + /** Mask for getting the lower bits for the in-data-block offset. */ + var UTRIE2_DATA_MASK$1 = UTRIE2_DATA_BLOCK_LENGTH$1 - 1; + var UTRIE2_LSCP_INDEX_2_LENGTH$1 = 0x400 >> UTRIE2_SHIFT_2$1; + /** Count the lengths of both BMP pieces. 2080=0x820 */ + var UTRIE2_INDEX_2_BMP_LENGTH$1 = UTRIE2_LSCP_INDEX_2_OFFSET$1 + UTRIE2_LSCP_INDEX_2_LENGTH$1; + /** + * The 2-byte UTF-8 version of the index-2 table follows at offset 2080=0x820. + * Length 32=0x20 for lead bytes C0..DF, regardless of UTRIE2_SHIFT_2. + */ + var UTRIE2_UTF8_2B_INDEX_2_OFFSET$1 = UTRIE2_INDEX_2_BMP_LENGTH$1; + var UTRIE2_UTF8_2B_INDEX_2_LENGTH$1 = 0x800 >> 6; /* U+0800 is the first code point after 2-byte UTF-8 */ + /** + * The index-1 table, only used for supplementary code points, at offset 2112=0x840. + * Variable length, for code points up to highStart, where the last single-value range starts. + * Maximum length 512=0x200=0x100000>>UTRIE2_SHIFT_1. + * (For 0x100000 supplementary code points U+10000..U+10ffff.) + * + * The part of the index-2 table for supplementary code points starts + * after this index-1 table. + * + * Both the index-1 table and the following part of the index-2 table + * are omitted completely if there is only BMP data. + */ + var UTRIE2_INDEX_1_OFFSET$1 = UTRIE2_UTF8_2B_INDEX_2_OFFSET$1 + UTRIE2_UTF8_2B_INDEX_2_LENGTH$1; + /** + * Number of index-1 entries for the BMP. 32=0x20 + * This part of the index-1 table is omitted from the serialized form. + */ + var UTRIE2_OMITTED_BMP_INDEX_1_LENGTH$1 = 0x10000 >> UTRIE2_SHIFT_1$1; + /** Number of entries in an index-2 block. 64=0x40 */ + var UTRIE2_INDEX_2_BLOCK_LENGTH$1 = 1 << UTRIE2_SHIFT_1_2$1; + /** Mask for getting the lower bits for the in-index-2-block offset. */ + var UTRIE2_INDEX_2_MASK$1 = UTRIE2_INDEX_2_BLOCK_LENGTH$1 - 1; + var slice16$1 = function (view, start, end) { + if (view.slice) { + return view.slice(start, end); + } + return new Uint16Array(Array.prototype.slice.call(view, start, end)); + }; + var slice32$1 = function (view, start, end) { + if (view.slice) { + return view.slice(start, end); + } + return new Uint32Array(Array.prototype.slice.call(view, start, end)); + }; + var createTrieFromBase64$1 = function (base64, _byteLength) { + var buffer = decode$1(base64); + var view32 = Array.isArray(buffer) ? polyUint32Array$1(buffer) : new Uint32Array(buffer); + var view16 = Array.isArray(buffer) ? polyUint16Array$1(buffer) : new Uint16Array(buffer); + var headerLength = 24; + var index = slice16$1(view16, headerLength / 2, view32[4] / 2); + var data = view32[5] === 2 + ? slice16$1(view16, (headerLength + view32[4]) / 2) + : slice32$1(view32, Math.ceil((headerLength + view32[4]) / 4)); + return new Trie$1(view32[0], view32[1], view32[2], view32[3], index, data); + }; + var Trie$1 = /** @class */ (function () { + function Trie(initialValue, errorValue, highStart, highValueIndex, index, data) { + this.initialValue = initialValue; + this.errorValue = errorValue; + this.highStart = highStart; + this.highValueIndex = highValueIndex; + this.index = index; + this.data = data; + } + /** + * Get the value for a code point as stored in the Trie. + * + * @param codePoint the code point + * @return the value + */ + Trie.prototype.get = function (codePoint) { + var ix; + if (codePoint >= 0) { + if (codePoint < 0x0d800 || (codePoint > 0x0dbff && codePoint <= 0x0ffff)) { + // Ordinary BMP code point, excluding leading surrogates. + // BMP uses a single level lookup. BMP index starts at offset 0 in the Trie2 index. + // 16 bit data is stored in the index array itself. + ix = this.index[codePoint >> UTRIE2_SHIFT_2$1]; + ix = (ix << UTRIE2_INDEX_SHIFT$1) + (codePoint & UTRIE2_DATA_MASK$1); + return this.data[ix]; + } + if (codePoint <= 0xffff) { + // Lead Surrogate Code Point. A Separate index section is stored for + // lead surrogate code units and code points. + // The main index has the code unit data. + // For this function, we need the code point data. + // Note: this expression could be refactored for slightly improved efficiency, but + // surrogate code points will be so rare in practice that it's not worth it. + ix = this.index[UTRIE2_LSCP_INDEX_2_OFFSET$1 + ((codePoint - 0xd800) >> UTRIE2_SHIFT_2$1)]; + ix = (ix << UTRIE2_INDEX_SHIFT$1) + (codePoint & UTRIE2_DATA_MASK$1); + return this.data[ix]; + } + if (codePoint < this.highStart) { + // Supplemental code point, use two-level lookup. + ix = UTRIE2_INDEX_1_OFFSET$1 - UTRIE2_OMITTED_BMP_INDEX_1_LENGTH$1 + (codePoint >> UTRIE2_SHIFT_1$1); + ix = this.index[ix]; + ix += (codePoint >> UTRIE2_SHIFT_2$1) & UTRIE2_INDEX_2_MASK$1; + ix = this.index[ix]; + ix = (ix << UTRIE2_INDEX_SHIFT$1) + (codePoint & UTRIE2_DATA_MASK$1); + return this.data[ix]; + } + if (codePoint <= 0x10ffff) { + return this.data[this.highValueIndex]; + } + } + // Fall through. The code point is outside of the legal range of 0..0x10ffff. + return this.errorValue; + }; + return Trie; + }()); + + /* + * base64-arraybuffer 1.0.2 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ + var chars$3 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + var lookup$3 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (var i$3 = 0; i$3 < chars$3.length; i$3++) { + lookup$3[chars$3.charCodeAt(i$3)] = i$3; + } + + var base64$1 = 'KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=='; + + var LETTER_NUMBER_MODIFIER = 50; + // Non-tailorable Line Breaking Classes + var BK = 1; // Cause a line break (after) + var CR$1 = 2; // Cause a line break (after), except between CR and LF + var LF$1 = 3; // Cause a line break (after) + var CM = 4; // Prohibit a line break between the character and the preceding character + var NL = 5; // Cause a line break (after) + var WJ = 7; // Prohibit line breaks before and after + var ZW = 8; // Provide a break opportunity + var GL = 9; // Prohibit line breaks before and after + var SP = 10; // Enable indirect line breaks + var ZWJ$1 = 11; // Prohibit line breaks within joiner sequences + // Break Opportunities + var B2 = 12; // Provide a line break opportunity before and after the character + var BA = 13; // Generally provide a line break opportunity after the character + var BB = 14; // Generally provide a line break opportunity before the character + var HY = 15; // Provide a line break opportunity after the character, except in numeric context + var CB = 16; // Provide a line break opportunity contingent on additional information + // Characters Prohibiting Certain Breaks + var CL = 17; // Prohibit line breaks before + var CP = 18; // Prohibit line breaks before + var EX = 19; // Prohibit line breaks before + var IN = 20; // Allow only indirect line breaks between pairs + var NS = 21; // Allow only indirect line breaks before + var OP = 22; // Prohibit line breaks after + var QU = 23; // Act like they are both opening and closing + // Numeric Context + var IS = 24; // Prevent breaks after any and before numeric + var NU = 25; // Form numeric expressions for line breaking purposes + var PO = 26; // Do not break following a numeric expression + var PR = 27; // Do not break in front of a numeric expression + var SY = 28; // Prevent a break before; and allow a break after + // Other Characters + var AI = 29; // Act like AL when the resolvedEAW is N; otherwise; act as ID + var AL = 30; // Are alphabetic characters or symbols that are used with alphabetic characters + var CJ = 31; // Treat as NS or ID for strict or normal breaking. + var EB = 32; // Do not break from following Emoji Modifier + var EM = 33; // Do not break from preceding Emoji Base + var H2 = 34; // Form Korean syllable blocks + var H3 = 35; // Form Korean syllable blocks + var HL = 36; // Do not break around a following hyphen; otherwise act as Alphabetic + var ID = 37; // Break before or after; except in some numeric context + var JL = 38; // Form Korean syllable blocks + var JV = 39; // Form Korean syllable blocks + var JT = 40; // Form Korean syllable blocks + var RI$1 = 41; // Keep pairs together. For pairs; break before and after other classes + var SA = 42; // Provide a line break opportunity contingent on additional, language-specific context analysis + var XX = 43; // Have as yet unknown line breaking behavior or unassigned code positions + var ea_OP = [0x2329, 0xff08]; + var BREAK_MANDATORY = '!'; + var BREAK_NOT_ALLOWED$1 = '×'; + var BREAK_ALLOWED$1 = '÷'; + var UnicodeTrie$1 = createTrieFromBase64$1(base64$1); + var ALPHABETICS = [AL, HL]; + var HARD_LINE_BREAKS = [BK, CR$1, LF$1, NL]; + var SPACE$1 = [SP, ZW]; + var PREFIX_POSTFIX = [PR, PO]; + var LINE_BREAKS = HARD_LINE_BREAKS.concat(SPACE$1); + var KOREAN_SYLLABLE_BLOCK = [JL, JV, JT, H2, H3]; + var HYPHEN = [HY, BA]; + var codePointsToCharacterClasses = function (codePoints, lineBreak) { + if (lineBreak === void 0) { lineBreak = 'strict'; } + var types = []; + var indices = []; + var categories = []; + codePoints.forEach(function (codePoint, index) { + var classType = UnicodeTrie$1.get(codePoint); + if (classType > LETTER_NUMBER_MODIFIER) { + categories.push(true); + classType -= LETTER_NUMBER_MODIFIER; + } + else { + categories.push(false); + } + if (['normal', 'auto', 'loose'].indexOf(lineBreak) !== -1) { + // U+2010, – U+2013, 〜 U+301C, ゠ U+30A0 + if ([0x2010, 0x2013, 0x301c, 0x30a0].indexOf(codePoint) !== -1) { + indices.push(index); + return types.push(CB); + } + } + if (classType === CM || classType === ZWJ$1) { + // LB10 Treat any remaining combining mark or ZWJ as AL. + if (index === 0) { + indices.push(index); + return types.push(AL); + } + // LB9 Do not break a combining character sequence; treat it as if it has the line breaking class of + // the base character in all of the following rules. Treat ZWJ as if it were CM. + var prev = types[index - 1]; + if (LINE_BREAKS.indexOf(prev) === -1) { + indices.push(indices[index - 1]); + return types.push(prev); + } + indices.push(index); + return types.push(AL); + } + indices.push(index); + if (classType === CJ) { + return types.push(lineBreak === 'strict' ? NS : ID); + } + if (classType === SA) { + return types.push(AL); + } + if (classType === AI) { + return types.push(AL); + } + // For supplementary characters, a useful default is to treat characters in the range 10000..1FFFD as AL + // and characters in the ranges 20000..2FFFD and 30000..3FFFD as ID, until the implementation can be revised + // to take into account the actual line breaking properties for these characters. + if (classType === XX) { + if ((codePoint >= 0x20000 && codePoint <= 0x2fffd) || (codePoint >= 0x30000 && codePoint <= 0x3fffd)) { + return types.push(ID); + } + else { + return types.push(AL); + } + } + types.push(classType); + }); + return [indices, types, categories]; + }; + var isAdjacentWithSpaceIgnored = function (a, b, currentIndex, classTypes) { + var current = classTypes[currentIndex]; + if (Array.isArray(a) ? a.indexOf(current) !== -1 : a === current) { + var i = currentIndex; + while (i <= classTypes.length) { + i++; + var next = classTypes[i]; + if (next === b) { + return true; + } + if (next !== SP) { + break; + } + } + } + if (current === SP) { + var i = currentIndex; + while (i > 0) { + i--; + var prev = classTypes[i]; + if (Array.isArray(a) ? a.indexOf(prev) !== -1 : a === prev) { + var n = currentIndex; + while (n <= classTypes.length) { + n++; + var next = classTypes[n]; + if (next === b) { + return true; + } + if (next !== SP) { + break; + } + } + } + if (prev !== SP) { + break; + } + } + } + return false; + }; + var previousNonSpaceClassType = function (currentIndex, classTypes) { + var i = currentIndex; + while (i >= 0) { + var type = classTypes[i]; + if (type === SP) { + i--; + } + else { + return type; + } + } + return 0; + }; + var _lineBreakAtIndex = function (codePoints, classTypes, indicies, index, forbiddenBreaks) { + if (indicies[index] === 0) { + return BREAK_NOT_ALLOWED$1; + } + var currentIndex = index - 1; + if (Array.isArray(forbiddenBreaks) && forbiddenBreaks[currentIndex] === true) { + return BREAK_NOT_ALLOWED$1; + } + var beforeIndex = currentIndex - 1; + var afterIndex = currentIndex + 1; + var current = classTypes[currentIndex]; + // LB4 Always break after hard line breaks. + // LB5 Treat CR followed by LF, as well as CR, LF, and NL as hard line breaks. + var before = beforeIndex >= 0 ? classTypes[beforeIndex] : 0; + var next = classTypes[afterIndex]; + if (current === CR$1 && next === LF$1) { + return BREAK_NOT_ALLOWED$1; + } + if (HARD_LINE_BREAKS.indexOf(current) !== -1) { + return BREAK_MANDATORY; + } + // LB6 Do not break before hard line breaks. + if (HARD_LINE_BREAKS.indexOf(next) !== -1) { + return BREAK_NOT_ALLOWED$1; + } + // LB7 Do not break before spaces or zero width space. + if (SPACE$1.indexOf(next) !== -1) { + return BREAK_NOT_ALLOWED$1; + } + // LB8 Break before any character following a zero-width space, even if one or more spaces intervene. + if (previousNonSpaceClassType(currentIndex, classTypes) === ZW) { + return BREAK_ALLOWED$1; + } + // LB8a Do not break after a zero width joiner. + if (UnicodeTrie$1.get(codePoints[currentIndex]) === ZWJ$1) { + return BREAK_NOT_ALLOWED$1; + } + // zwj emojis + if ((current === EB || current === EM) && UnicodeTrie$1.get(codePoints[afterIndex]) === ZWJ$1) { + return BREAK_NOT_ALLOWED$1; + } + // LB11 Do not break before or after Word joiner and related characters. + if (current === WJ || next === WJ) { + return BREAK_NOT_ALLOWED$1; + } + // LB12 Do not break after NBSP and related characters. + if (current === GL) { + return BREAK_NOT_ALLOWED$1; + } + // LB12a Do not break before NBSP and related characters, except after spaces and hyphens. + if ([SP, BA, HY].indexOf(current) === -1 && next === GL) { + return BREAK_NOT_ALLOWED$1; + } + // LB13 Do not break before ‘]’ or ‘!’ or ‘;’ or ‘/’, even after spaces. + if ([CL, CP, EX, IS, SY].indexOf(next) !== -1) { + return BREAK_NOT_ALLOWED$1; + } + // LB14 Do not break after ‘[’, even after spaces. + if (previousNonSpaceClassType(currentIndex, classTypes) === OP) { + return BREAK_NOT_ALLOWED$1; + } + // LB15 Do not break within ‘”[’, even with intervening spaces. + if (isAdjacentWithSpaceIgnored(QU, OP, currentIndex, classTypes)) { + return BREAK_NOT_ALLOWED$1; + } + // LB16 Do not break between closing punctuation and a nonstarter (lb=NS), even with intervening spaces. + if (isAdjacentWithSpaceIgnored([CL, CP], NS, currentIndex, classTypes)) { + return BREAK_NOT_ALLOWED$1; + } + // LB17 Do not break within ‘——’, even with intervening spaces. + if (isAdjacentWithSpaceIgnored(B2, B2, currentIndex, classTypes)) { + return BREAK_NOT_ALLOWED$1; + } + // LB18 Break after spaces. + if (current === SP) { + return BREAK_ALLOWED$1; + } + // LB19 Do not break before or after quotation marks, such as ‘ ” ’. + if (current === QU || next === QU) { + return BREAK_NOT_ALLOWED$1; + } + // LB20 Break before and after unresolved CB. + if (next === CB || current === CB) { + return BREAK_ALLOWED$1; + } + // LB21 Do not break before hyphen-minus, other hyphens, fixed-width spaces, small kana, and other non-starters, or after acute accents. + if ([BA, HY, NS].indexOf(next) !== -1 || current === BB) { + return BREAK_NOT_ALLOWED$1; + } + // LB21a Don't break after Hebrew + Hyphen. + if (before === HL && HYPHEN.indexOf(current) !== -1) { + return BREAK_NOT_ALLOWED$1; + } + // LB21b Don’t break between Solidus and Hebrew letters. + if (current === SY && next === HL) { + return BREAK_NOT_ALLOWED$1; + } + // LB22 Do not break before ellipsis. + if (next === IN) { + return BREAK_NOT_ALLOWED$1; + } + // LB23 Do not break between digits and letters. + if ((ALPHABETICS.indexOf(next) !== -1 && current === NU) || (ALPHABETICS.indexOf(current) !== -1 && next === NU)) { + return BREAK_NOT_ALLOWED$1; + } + // LB23a Do not break between numeric prefixes and ideographs, or between ideographs and numeric postfixes. + if ((current === PR && [ID, EB, EM].indexOf(next) !== -1) || + ([ID, EB, EM].indexOf(current) !== -1 && next === PO)) { + return BREAK_NOT_ALLOWED$1; + } + // LB24 Do not break between numeric prefix/postfix and letters, or between letters and prefix/postfix. + if ((ALPHABETICS.indexOf(current) !== -1 && PREFIX_POSTFIX.indexOf(next) !== -1) || + (PREFIX_POSTFIX.indexOf(current) !== -1 && ALPHABETICS.indexOf(next) !== -1)) { + return BREAK_NOT_ALLOWED$1; + } + // LB25 Do not break between the following pairs of classes relevant to numbers: + if ( + // (PR | PO) × ( OP | HY )? NU + ([PR, PO].indexOf(current) !== -1 && + (next === NU || ([OP, HY].indexOf(next) !== -1 && classTypes[afterIndex + 1] === NU))) || + // ( OP | HY ) × NU + ([OP, HY].indexOf(current) !== -1 && next === NU) || + // NU × (NU | SY | IS) + (current === NU && [NU, SY, IS].indexOf(next) !== -1)) { + return BREAK_NOT_ALLOWED$1; + } + // NU (NU | SY | IS)* × (NU | SY | IS | CL | CP) + if ([NU, SY, IS, CL, CP].indexOf(next) !== -1) { + var prevIndex = currentIndex; + while (prevIndex >= 0) { + var type = classTypes[prevIndex]; + if (type === NU) { + return BREAK_NOT_ALLOWED$1; + } + else if ([SY, IS].indexOf(type) !== -1) { + prevIndex--; + } + else { + break; + } + } + } + // NU (NU | SY | IS)* (CL | CP)? × (PO | PR)) + if ([PR, PO].indexOf(next) !== -1) { + var prevIndex = [CL, CP].indexOf(current) !== -1 ? beforeIndex : currentIndex; + while (prevIndex >= 0) { + var type = classTypes[prevIndex]; + if (type === NU) { + return BREAK_NOT_ALLOWED$1; + } + else if ([SY, IS].indexOf(type) !== -1) { + prevIndex--; + } + else { + break; + } + } + } + // LB26 Do not break a Korean syllable. + if ((JL === current && [JL, JV, H2, H3].indexOf(next) !== -1) || + ([JV, H2].indexOf(current) !== -1 && [JV, JT].indexOf(next) !== -1) || + ([JT, H3].indexOf(current) !== -1 && next === JT)) { + return BREAK_NOT_ALLOWED$1; + } + // LB27 Treat a Korean Syllable Block the same as ID. + if ((KOREAN_SYLLABLE_BLOCK.indexOf(current) !== -1 && [IN, PO].indexOf(next) !== -1) || + (KOREAN_SYLLABLE_BLOCK.indexOf(next) !== -1 && current === PR)) { + return BREAK_NOT_ALLOWED$1; + } + // LB28 Do not break between alphabetics (“at”). + if (ALPHABETICS.indexOf(current) !== -1 && ALPHABETICS.indexOf(next) !== -1) { + return BREAK_NOT_ALLOWED$1; + } + // LB29 Do not break between numeric punctuation and alphabetics (“e.g.”). + if (current === IS && ALPHABETICS.indexOf(next) !== -1) { + return BREAK_NOT_ALLOWED$1; + } + // LB30 Do not break between letters, numbers, or ordinary symbols and opening or closing parentheses. + if ((ALPHABETICS.concat(NU).indexOf(current) !== -1 && + next === OP && + ea_OP.indexOf(codePoints[afterIndex]) === -1) || + (ALPHABETICS.concat(NU).indexOf(next) !== -1 && current === CP)) { + return BREAK_NOT_ALLOWED$1; + } + // LB30a Break between two regional indicator symbols if and only if there are an even number of regional + // indicators preceding the position of the break. + if (current === RI$1 && next === RI$1) { + var i = indicies[currentIndex]; + var count = 1; + while (i > 0) { + i--; + if (classTypes[i] === RI$1) { + count++; + } + else { + break; + } + } + if (count % 2 !== 0) { + return BREAK_NOT_ALLOWED$1; + } + } + // LB30b Do not break between an emoji base and an emoji modifier. + if (current === EB && next === EM) { + return BREAK_NOT_ALLOWED$1; + } + return BREAK_ALLOWED$1; + }; + var cssFormattedClasses = function (codePoints, options) { + if (!options) { + options = { lineBreak: 'normal', wordBreak: 'normal' }; + } + var _a = codePointsToCharacterClasses(codePoints, options.lineBreak), indicies = _a[0], classTypes = _a[1], isLetterNumber = _a[2]; + if (options.wordBreak === 'break-all' || options.wordBreak === 'break-word') { + classTypes = classTypes.map(function (type) { return ([NU, AL, SA].indexOf(type) !== -1 ? ID : type); }); + } + var forbiddenBreakpoints = options.wordBreak === 'keep-all' + ? isLetterNumber.map(function (letterNumber, i) { + return letterNumber && codePoints[i] >= 0x4e00 && codePoints[i] <= 0x9fff; + }) + : undefined; + return [indicies, classTypes, forbiddenBreakpoints]; + }; + var Break = /** @class */ (function () { + function Break(codePoints, lineBreak, start, end) { + this.codePoints = codePoints; + this.required = lineBreak === BREAK_MANDATORY; + this.start = start; + this.end = end; + } + Break.prototype.slice = function () { + return fromCodePoint$1.apply(void 0, this.codePoints.slice(this.start, this.end)); + }; + return Break; + }()); + var LineBreaker = function (str, options) { + var codePoints = toCodePoints$1(str); + var _a = cssFormattedClasses(codePoints, options), indicies = _a[0], classTypes = _a[1], forbiddenBreakpoints = _a[2]; + var length = codePoints.length; + var lastEnd = 0; + var nextIndex = 0; + return { + next: function () { + if (nextIndex >= length) { + return { done: true, value: null }; + } + var lineBreak = BREAK_NOT_ALLOWED$1; + while (nextIndex < length && + (lineBreak = _lineBreakAtIndex(codePoints, classTypes, indicies, ++nextIndex, forbiddenBreakpoints)) === + BREAK_NOT_ALLOWED$1) { } + if (lineBreak !== BREAK_NOT_ALLOWED$1 || nextIndex === length) { + var value = new Break(codePoints, lineBreak, lastEnd, nextIndex); + lastEnd = nextIndex; + return { value: value, done: false }; + } + return { done: true, value: null }; + }, + }; + }; + + // https://www.w3.org/TR/css-syntax-3 + var FLAG_UNRESTRICTED = 1 << 0; + var FLAG_ID = 1 << 1; + var FLAG_INTEGER = 1 << 2; + var FLAG_NUMBER = 1 << 3; + var LINE_FEED = 0x000a; + var SOLIDUS = 0x002f; + var REVERSE_SOLIDUS = 0x005c; + var CHARACTER_TABULATION = 0x0009; + var SPACE = 0x0020; + var QUOTATION_MARK = 0x0022; + var EQUALS_SIGN = 0x003d; + var NUMBER_SIGN = 0x0023; + var DOLLAR_SIGN = 0x0024; + var PERCENTAGE_SIGN = 0x0025; + var APOSTROPHE = 0x0027; + var LEFT_PARENTHESIS = 0x0028; + var RIGHT_PARENTHESIS = 0x0029; + var LOW_LINE = 0x005f; + var HYPHEN_MINUS = 0x002d; + var EXCLAMATION_MARK = 0x0021; + var LESS_THAN_SIGN = 0x003c; + var GREATER_THAN_SIGN = 0x003e; + var COMMERCIAL_AT = 0x0040; + var LEFT_SQUARE_BRACKET = 0x005b; + var RIGHT_SQUARE_BRACKET = 0x005d; + var CIRCUMFLEX_ACCENT = 0x003d; + var LEFT_CURLY_BRACKET = 0x007b; + var QUESTION_MARK = 0x003f; + var RIGHT_CURLY_BRACKET = 0x007d; + var VERTICAL_LINE = 0x007c; + var TILDE = 0x007e; + var CONTROL = 0x0080; + var REPLACEMENT_CHARACTER = 0xfffd; + var ASTERISK = 0x002a; + var PLUS_SIGN = 0x002b; + var COMMA = 0x002c; + var COLON = 0x003a; + var SEMICOLON = 0x003b; + var FULL_STOP = 0x002e; + var NULL = 0x0000; + var BACKSPACE = 0x0008; + var LINE_TABULATION = 0x000b; + var SHIFT_OUT = 0x000e; + var INFORMATION_SEPARATOR_ONE = 0x001f; + var DELETE = 0x007f; + var EOF = -1; + var ZERO = 0x0030; + var a = 0x0061; + var e = 0x0065; + var f = 0x0066; + var u = 0x0075; + var z = 0x007a; + var A = 0x0041; + var E = 0x0045; + var F = 0x0046; + var U = 0x0055; + var Z = 0x005a; + var isDigit = function (codePoint) { return codePoint >= ZERO && codePoint <= 0x0039; }; + var isSurrogateCodePoint = function (codePoint) { return codePoint >= 0xd800 && codePoint <= 0xdfff; }; + var isHex = function (codePoint) { + return isDigit(codePoint) || (codePoint >= A && codePoint <= F) || (codePoint >= a && codePoint <= f); + }; + var isLowerCaseLetter = function (codePoint) { return codePoint >= a && codePoint <= z; }; + var isUpperCaseLetter = function (codePoint) { return codePoint >= A && codePoint <= Z; }; + var isLetter = function (codePoint) { return isLowerCaseLetter(codePoint) || isUpperCaseLetter(codePoint); }; + var isNonASCIICodePoint = function (codePoint) { return codePoint >= CONTROL; }; + var isWhiteSpace = function (codePoint) { + return codePoint === LINE_FEED || codePoint === CHARACTER_TABULATION || codePoint === SPACE; + }; + var isNameStartCodePoint = function (codePoint) { + return isLetter(codePoint) || isNonASCIICodePoint(codePoint) || codePoint === LOW_LINE; + }; + var isNameCodePoint = function (codePoint) { + return isNameStartCodePoint(codePoint) || isDigit(codePoint) || codePoint === HYPHEN_MINUS; + }; + var isNonPrintableCodePoint = function (codePoint) { + return ((codePoint >= NULL && codePoint <= BACKSPACE) || + codePoint === LINE_TABULATION || + (codePoint >= SHIFT_OUT && codePoint <= INFORMATION_SEPARATOR_ONE) || + codePoint === DELETE); + }; + var isValidEscape = function (c1, c2) { + if (c1 !== REVERSE_SOLIDUS) { + return false; + } + return c2 !== LINE_FEED; + }; + var isIdentifierStart = function (c1, c2, c3) { + if (c1 === HYPHEN_MINUS) { + return isNameStartCodePoint(c2) || isValidEscape(c2, c3); + } + else if (isNameStartCodePoint(c1)) { + return true; + } + else if (c1 === REVERSE_SOLIDUS && isValidEscape(c1, c2)) { + return true; + } + return false; + }; + var isNumberStart = function (c1, c2, c3) { + if (c1 === PLUS_SIGN || c1 === HYPHEN_MINUS) { + if (isDigit(c2)) { + return true; + } + return c2 === FULL_STOP && isDigit(c3); + } + if (c1 === FULL_STOP) { + return isDigit(c2); + } + return isDigit(c1); + }; + var stringToNumber = function (codePoints) { + var c = 0; + var sign = 1; + if (codePoints[c] === PLUS_SIGN || codePoints[c] === HYPHEN_MINUS) { + if (codePoints[c] === HYPHEN_MINUS) { + sign = -1; + } + c++; + } + var integers = []; + while (isDigit(codePoints[c])) { + integers.push(codePoints[c++]); + } + var int = integers.length ? parseInt(fromCodePoint$1.apply(void 0, integers), 10) : 0; + if (codePoints[c] === FULL_STOP) { + c++; + } + var fraction = []; + while (isDigit(codePoints[c])) { + fraction.push(codePoints[c++]); + } + var fracd = fraction.length; + var frac = fracd ? parseInt(fromCodePoint$1.apply(void 0, fraction), 10) : 0; + if (codePoints[c] === E || codePoints[c] === e) { + c++; + } + var expsign = 1; + if (codePoints[c] === PLUS_SIGN || codePoints[c] === HYPHEN_MINUS) { + if (codePoints[c] === HYPHEN_MINUS) { + expsign = -1; + } + c++; + } + var exponent = []; + while (isDigit(codePoints[c])) { + exponent.push(codePoints[c++]); + } + var exp = exponent.length ? parseInt(fromCodePoint$1.apply(void 0, exponent), 10) : 0; + return sign * (int + frac * Math.pow(10, -fracd)) * Math.pow(10, expsign * exp); + }; + var LEFT_PARENTHESIS_TOKEN = { + type: 2 /* LEFT_PARENTHESIS_TOKEN */ + }; + var RIGHT_PARENTHESIS_TOKEN = { + type: 3 /* RIGHT_PARENTHESIS_TOKEN */ + }; + var COMMA_TOKEN = { type: 4 /* COMMA_TOKEN */ }; + var SUFFIX_MATCH_TOKEN = { type: 13 /* SUFFIX_MATCH_TOKEN */ }; + var PREFIX_MATCH_TOKEN = { type: 8 /* PREFIX_MATCH_TOKEN */ }; + var COLUMN_TOKEN = { type: 21 /* COLUMN_TOKEN */ }; + var DASH_MATCH_TOKEN = { type: 9 /* DASH_MATCH_TOKEN */ }; + var INCLUDE_MATCH_TOKEN = { type: 10 /* INCLUDE_MATCH_TOKEN */ }; + var LEFT_CURLY_BRACKET_TOKEN = { + type: 11 /* LEFT_CURLY_BRACKET_TOKEN */ + }; + var RIGHT_CURLY_BRACKET_TOKEN = { + type: 12 /* RIGHT_CURLY_BRACKET_TOKEN */ + }; + var SUBSTRING_MATCH_TOKEN = { type: 14 /* SUBSTRING_MATCH_TOKEN */ }; + var BAD_URL_TOKEN = { type: 23 /* BAD_URL_TOKEN */ }; + var BAD_STRING_TOKEN = { type: 1 /* BAD_STRING_TOKEN */ }; + var CDO_TOKEN = { type: 25 /* CDO_TOKEN */ }; + var CDC_TOKEN = { type: 24 /* CDC_TOKEN */ }; + var COLON_TOKEN = { type: 26 /* COLON_TOKEN */ }; + var SEMICOLON_TOKEN = { type: 27 /* SEMICOLON_TOKEN */ }; + var LEFT_SQUARE_BRACKET_TOKEN = { + type: 28 /* LEFT_SQUARE_BRACKET_TOKEN */ + }; + var RIGHT_SQUARE_BRACKET_TOKEN = { + type: 29 /* RIGHT_SQUARE_BRACKET_TOKEN */ + }; + var WHITESPACE_TOKEN = { type: 31 /* WHITESPACE_TOKEN */ }; + var EOF_TOKEN = { type: 32 /* EOF_TOKEN */ }; + var Tokenizer = /** @class */ (function () { + function Tokenizer() { + this._value = []; + } + Tokenizer.prototype.write = function (chunk) { + this._value = this._value.concat(toCodePoints$1(chunk)); + }; + Tokenizer.prototype.read = function () { + var tokens = []; + var token = this.consumeToken(); + while (token !== EOF_TOKEN) { + tokens.push(token); + token = this.consumeToken(); + } + return tokens; + }; + Tokenizer.prototype.consumeToken = function () { + var codePoint = this.consumeCodePoint(); + switch (codePoint) { + case QUOTATION_MARK: + return this.consumeStringToken(QUOTATION_MARK); + case NUMBER_SIGN: + var c1 = this.peekCodePoint(0); + var c2 = this.peekCodePoint(1); + var c3 = this.peekCodePoint(2); + if (isNameCodePoint(c1) || isValidEscape(c2, c3)) { + var flags = isIdentifierStart(c1, c2, c3) ? FLAG_ID : FLAG_UNRESTRICTED; + var value = this.consumeName(); + return { type: 5 /* HASH_TOKEN */, value: value, flags: flags }; + } + break; + case DOLLAR_SIGN: + if (this.peekCodePoint(0) === EQUALS_SIGN) { + this.consumeCodePoint(); + return SUFFIX_MATCH_TOKEN; + } + break; + case APOSTROPHE: + return this.consumeStringToken(APOSTROPHE); + case LEFT_PARENTHESIS: + return LEFT_PARENTHESIS_TOKEN; + case RIGHT_PARENTHESIS: + return RIGHT_PARENTHESIS_TOKEN; + case ASTERISK: + if (this.peekCodePoint(0) === EQUALS_SIGN) { + this.consumeCodePoint(); + return SUBSTRING_MATCH_TOKEN; + } + break; + case PLUS_SIGN: + if (isNumberStart(codePoint, this.peekCodePoint(0), this.peekCodePoint(1))) { + this.reconsumeCodePoint(codePoint); + return this.consumeNumericToken(); + } + break; + case COMMA: + return COMMA_TOKEN; + case HYPHEN_MINUS: + var e1 = codePoint; + var e2 = this.peekCodePoint(0); + var e3 = this.peekCodePoint(1); + if (isNumberStart(e1, e2, e3)) { + this.reconsumeCodePoint(codePoint); + return this.consumeNumericToken(); + } + if (isIdentifierStart(e1, e2, e3)) { + this.reconsumeCodePoint(codePoint); + return this.consumeIdentLikeToken(); + } + if (e2 === HYPHEN_MINUS && e3 === GREATER_THAN_SIGN) { + this.consumeCodePoint(); + this.consumeCodePoint(); + return CDC_TOKEN; + } + break; + case FULL_STOP: + if (isNumberStart(codePoint, this.peekCodePoint(0), this.peekCodePoint(1))) { + this.reconsumeCodePoint(codePoint); + return this.consumeNumericToken(); + } + break; + case SOLIDUS: + if (this.peekCodePoint(0) === ASTERISK) { + this.consumeCodePoint(); + while (true) { + var c = this.consumeCodePoint(); + if (c === ASTERISK) { + c = this.consumeCodePoint(); + if (c === SOLIDUS) { + return this.consumeToken(); + } + } + if (c === EOF) { + return this.consumeToken(); + } + } + } + break; + case COLON: + return COLON_TOKEN; + case SEMICOLON: + return SEMICOLON_TOKEN; + case LESS_THAN_SIGN: + if (this.peekCodePoint(0) === EXCLAMATION_MARK && + this.peekCodePoint(1) === HYPHEN_MINUS && + this.peekCodePoint(2) === HYPHEN_MINUS) { + this.consumeCodePoint(); + this.consumeCodePoint(); + return CDO_TOKEN; + } + break; + case COMMERCIAL_AT: + var a1 = this.peekCodePoint(0); + var a2 = this.peekCodePoint(1); + var a3 = this.peekCodePoint(2); + if (isIdentifierStart(a1, a2, a3)) { + var value = this.consumeName(); + return { type: 7 /* AT_KEYWORD_TOKEN */, value: value }; + } + break; + case LEFT_SQUARE_BRACKET: + return LEFT_SQUARE_BRACKET_TOKEN; + case REVERSE_SOLIDUS: + if (isValidEscape(codePoint, this.peekCodePoint(0))) { + this.reconsumeCodePoint(codePoint); + return this.consumeIdentLikeToken(); + } + break; + case RIGHT_SQUARE_BRACKET: + return RIGHT_SQUARE_BRACKET_TOKEN; + case CIRCUMFLEX_ACCENT: + if (this.peekCodePoint(0) === EQUALS_SIGN) { + this.consumeCodePoint(); + return PREFIX_MATCH_TOKEN; + } + break; + case LEFT_CURLY_BRACKET: + return LEFT_CURLY_BRACKET_TOKEN; + case RIGHT_CURLY_BRACKET: + return RIGHT_CURLY_BRACKET_TOKEN; + case u: + case U: + var u1 = this.peekCodePoint(0); + var u2 = this.peekCodePoint(1); + if (u1 === PLUS_SIGN && (isHex(u2) || u2 === QUESTION_MARK)) { + this.consumeCodePoint(); + this.consumeUnicodeRangeToken(); + } + this.reconsumeCodePoint(codePoint); + return this.consumeIdentLikeToken(); + case VERTICAL_LINE: + if (this.peekCodePoint(0) === EQUALS_SIGN) { + this.consumeCodePoint(); + return DASH_MATCH_TOKEN; + } + if (this.peekCodePoint(0) === VERTICAL_LINE) { + this.consumeCodePoint(); + return COLUMN_TOKEN; + } + break; + case TILDE: + if (this.peekCodePoint(0) === EQUALS_SIGN) { + this.consumeCodePoint(); + return INCLUDE_MATCH_TOKEN; + } + break; + case EOF: + return EOF_TOKEN; + } + if (isWhiteSpace(codePoint)) { + this.consumeWhiteSpace(); + return WHITESPACE_TOKEN; + } + if (isDigit(codePoint)) { + this.reconsumeCodePoint(codePoint); + return this.consumeNumericToken(); + } + if (isNameStartCodePoint(codePoint)) { + this.reconsumeCodePoint(codePoint); + return this.consumeIdentLikeToken(); + } + return { type: 6 /* DELIM_TOKEN */, value: fromCodePoint$1(codePoint) }; + }; + Tokenizer.prototype.consumeCodePoint = function () { + var value = this._value.shift(); + return typeof value === 'undefined' ? -1 : value; + }; + Tokenizer.prototype.reconsumeCodePoint = function (codePoint) { + this._value.unshift(codePoint); + }; + Tokenizer.prototype.peekCodePoint = function (delta) { + if (delta >= this._value.length) { + return -1; + } + return this._value[delta]; + }; + Tokenizer.prototype.consumeUnicodeRangeToken = function () { + var digits = []; + var codePoint = this.consumeCodePoint(); + while (isHex(codePoint) && digits.length < 6) { + digits.push(codePoint); + codePoint = this.consumeCodePoint(); + } + var questionMarks = false; + while (codePoint === QUESTION_MARK && digits.length < 6) { + digits.push(codePoint); + codePoint = this.consumeCodePoint(); + questionMarks = true; + } + if (questionMarks) { + var start_1 = parseInt(fromCodePoint$1.apply(void 0, digits.map(function (digit) { return (digit === QUESTION_MARK ? ZERO : digit); })), 16); + var end = parseInt(fromCodePoint$1.apply(void 0, digits.map(function (digit) { return (digit === QUESTION_MARK ? F : digit); })), 16); + return { type: 30 /* UNICODE_RANGE_TOKEN */, start: start_1, end: end }; + } + var start = parseInt(fromCodePoint$1.apply(void 0, digits), 16); + if (this.peekCodePoint(0) === HYPHEN_MINUS && isHex(this.peekCodePoint(1))) { + this.consumeCodePoint(); + codePoint = this.consumeCodePoint(); + var endDigits = []; + while (isHex(codePoint) && endDigits.length < 6) { + endDigits.push(codePoint); + codePoint = this.consumeCodePoint(); + } + var end = parseInt(fromCodePoint$1.apply(void 0, endDigits), 16); + return { type: 30 /* UNICODE_RANGE_TOKEN */, start: start, end: end }; + } + else { + return { type: 30 /* UNICODE_RANGE_TOKEN */, start: start, end: start }; + } + }; + Tokenizer.prototype.consumeIdentLikeToken = function () { + var value = this.consumeName(); + if (value.toLowerCase() === 'url' && this.peekCodePoint(0) === LEFT_PARENTHESIS) { + this.consumeCodePoint(); + return this.consumeUrlToken(); + } + else if (this.peekCodePoint(0) === LEFT_PARENTHESIS) { + this.consumeCodePoint(); + return { type: 19 /* FUNCTION_TOKEN */, value: value }; + } + return { type: 20 /* IDENT_TOKEN */, value: value }; + }; + Tokenizer.prototype.consumeUrlToken = function () { + var value = []; + this.consumeWhiteSpace(); + if (this.peekCodePoint(0) === EOF) { + return { type: 22 /* URL_TOKEN */, value: '' }; + } + var next = this.peekCodePoint(0); + if (next === APOSTROPHE || next === QUOTATION_MARK) { + var stringToken = this.consumeStringToken(this.consumeCodePoint()); + if (stringToken.type === 0 /* STRING_TOKEN */) { + this.consumeWhiteSpace(); + if (this.peekCodePoint(0) === EOF || this.peekCodePoint(0) === RIGHT_PARENTHESIS) { + this.consumeCodePoint(); + return { type: 22 /* URL_TOKEN */, value: stringToken.value }; + } + } + this.consumeBadUrlRemnants(); + return BAD_URL_TOKEN; + } + while (true) { + var codePoint = this.consumeCodePoint(); + if (codePoint === EOF || codePoint === RIGHT_PARENTHESIS) { + return { type: 22 /* URL_TOKEN */, value: fromCodePoint$1.apply(void 0, value) }; + } + else if (isWhiteSpace(codePoint)) { + this.consumeWhiteSpace(); + if (this.peekCodePoint(0) === EOF || this.peekCodePoint(0) === RIGHT_PARENTHESIS) { + this.consumeCodePoint(); + return { type: 22 /* URL_TOKEN */, value: fromCodePoint$1.apply(void 0, value) }; + } + this.consumeBadUrlRemnants(); + return BAD_URL_TOKEN; + } + else if (codePoint === QUOTATION_MARK || + codePoint === APOSTROPHE || + codePoint === LEFT_PARENTHESIS || + isNonPrintableCodePoint(codePoint)) { + this.consumeBadUrlRemnants(); + return BAD_URL_TOKEN; + } + else if (codePoint === REVERSE_SOLIDUS) { + if (isValidEscape(codePoint, this.peekCodePoint(0))) { + value.push(this.consumeEscapedCodePoint()); + } + else { + this.consumeBadUrlRemnants(); + return BAD_URL_TOKEN; + } + } + else { + value.push(codePoint); + } + } + }; + Tokenizer.prototype.consumeWhiteSpace = function () { + while (isWhiteSpace(this.peekCodePoint(0))) { + this.consumeCodePoint(); + } + }; + Tokenizer.prototype.consumeBadUrlRemnants = function () { + while (true) { + var codePoint = this.consumeCodePoint(); + if (codePoint === RIGHT_PARENTHESIS || codePoint === EOF) { + return; + } + if (isValidEscape(codePoint, this.peekCodePoint(0))) { + this.consumeEscapedCodePoint(); + } + } + }; + Tokenizer.prototype.consumeStringSlice = function (count) { + var SLICE_STACK_SIZE = 50000; + var value = ''; + while (count > 0) { + var amount = Math.min(SLICE_STACK_SIZE, count); + value += fromCodePoint$1.apply(void 0, this._value.splice(0, amount)); + count -= amount; + } + this._value.shift(); + return value; + }; + Tokenizer.prototype.consumeStringToken = function (endingCodePoint) { + var value = ''; + var i = 0; + do { + var codePoint = this._value[i]; + if (codePoint === EOF || codePoint === undefined || codePoint === endingCodePoint) { + value += this.consumeStringSlice(i); + return { type: 0 /* STRING_TOKEN */, value: value }; + } + if (codePoint === LINE_FEED) { + this._value.splice(0, i); + return BAD_STRING_TOKEN; + } + if (codePoint === REVERSE_SOLIDUS) { + var next = this._value[i + 1]; + if (next !== EOF && next !== undefined) { + if (next === LINE_FEED) { + value += this.consumeStringSlice(i); + i = -1; + this._value.shift(); + } + else if (isValidEscape(codePoint, next)) { + value += this.consumeStringSlice(i); + value += fromCodePoint$1(this.consumeEscapedCodePoint()); + i = -1; + } + } + } + i++; + } while (true); + }; + Tokenizer.prototype.consumeNumber = function () { + var repr = []; + var type = FLAG_INTEGER; + var c1 = this.peekCodePoint(0); + if (c1 === PLUS_SIGN || c1 === HYPHEN_MINUS) { + repr.push(this.consumeCodePoint()); + } + while (isDigit(this.peekCodePoint(0))) { + repr.push(this.consumeCodePoint()); + } + c1 = this.peekCodePoint(0); + var c2 = this.peekCodePoint(1); + if (c1 === FULL_STOP && isDigit(c2)) { + repr.push(this.consumeCodePoint(), this.consumeCodePoint()); + type = FLAG_NUMBER; + while (isDigit(this.peekCodePoint(0))) { + repr.push(this.consumeCodePoint()); + } + } + c1 = this.peekCodePoint(0); + c2 = this.peekCodePoint(1); + var c3 = this.peekCodePoint(2); + if ((c1 === E || c1 === e) && (((c2 === PLUS_SIGN || c2 === HYPHEN_MINUS) && isDigit(c3)) || isDigit(c2))) { + repr.push(this.consumeCodePoint(), this.consumeCodePoint()); + type = FLAG_NUMBER; + while (isDigit(this.peekCodePoint(0))) { + repr.push(this.consumeCodePoint()); + } + } + return [stringToNumber(repr), type]; + }; + Tokenizer.prototype.consumeNumericToken = function () { + var _a = this.consumeNumber(), number = _a[0], flags = _a[1]; + var c1 = this.peekCodePoint(0); + var c2 = this.peekCodePoint(1); + var c3 = this.peekCodePoint(2); + if (isIdentifierStart(c1, c2, c3)) { + var unit = this.consumeName(); + return { type: 15 /* DIMENSION_TOKEN */, number: number, flags: flags, unit: unit }; + } + if (c1 === PERCENTAGE_SIGN) { + this.consumeCodePoint(); + return { type: 16 /* PERCENTAGE_TOKEN */, number: number, flags: flags }; + } + return { type: 17 /* NUMBER_TOKEN */, number: number, flags: flags }; + }; + Tokenizer.prototype.consumeEscapedCodePoint = function () { + var codePoint = this.consumeCodePoint(); + if (isHex(codePoint)) { + var hex = fromCodePoint$1(codePoint); + while (isHex(this.peekCodePoint(0)) && hex.length < 6) { + hex += fromCodePoint$1(this.consumeCodePoint()); + } + if (isWhiteSpace(this.peekCodePoint(0))) { + this.consumeCodePoint(); + } + var hexCodePoint = parseInt(hex, 16); + if (hexCodePoint === 0 || isSurrogateCodePoint(hexCodePoint) || hexCodePoint > 0x10ffff) { + return REPLACEMENT_CHARACTER; + } + return hexCodePoint; + } + if (codePoint === EOF) { + return REPLACEMENT_CHARACTER; + } + return codePoint; + }; + Tokenizer.prototype.consumeName = function () { + var result = ''; + while (true) { + var codePoint = this.consumeCodePoint(); + if (isNameCodePoint(codePoint)) { + result += fromCodePoint$1(codePoint); + } + else if (isValidEscape(codePoint, this.peekCodePoint(0))) { + result += fromCodePoint$1(this.consumeEscapedCodePoint()); + } + else { + this.reconsumeCodePoint(codePoint); + return result; + } + } + }; + return Tokenizer; + }()); + + var Parser = /** @class */ (function () { + function Parser(tokens) { + this._tokens = tokens; + } + Parser.create = function (value) { + var tokenizer = new Tokenizer(); + tokenizer.write(value); + return new Parser(tokenizer.read()); + }; + Parser.parseValue = function (value) { + return Parser.create(value).parseComponentValue(); + }; + Parser.parseValues = function (value) { + return Parser.create(value).parseComponentValues(); + }; + Parser.prototype.parseComponentValue = function () { + var token = this.consumeToken(); + while (token.type === 31 /* WHITESPACE_TOKEN */) { + token = this.consumeToken(); + } + if (token.type === 32 /* EOF_TOKEN */) { + throw new SyntaxError("Error parsing CSS component value, unexpected EOF"); + } + this.reconsumeToken(token); + var value = this.consumeComponentValue(); + do { + token = this.consumeToken(); + } while (token.type === 31 /* WHITESPACE_TOKEN */); + if (token.type === 32 /* EOF_TOKEN */) { + return value; + } + throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one"); + }; + Parser.prototype.parseComponentValues = function () { + var values = []; + while (true) { + var value = this.consumeComponentValue(); + if (value.type === 32 /* EOF_TOKEN */) { + return values; + } + values.push(value); + values.push(); + } + }; + Parser.prototype.consumeComponentValue = function () { + var token = this.consumeToken(); + switch (token.type) { + case 11 /* LEFT_CURLY_BRACKET_TOKEN */: + case 28 /* LEFT_SQUARE_BRACKET_TOKEN */: + case 2 /* LEFT_PARENTHESIS_TOKEN */: + return this.consumeSimpleBlock(token.type); + case 19 /* FUNCTION_TOKEN */: + return this.consumeFunction(token); + } + return token; + }; + Parser.prototype.consumeSimpleBlock = function (type) { + var block = { type: type, values: [] }; + var token = this.consumeToken(); + while (true) { + if (token.type === 32 /* EOF_TOKEN */ || isEndingTokenFor(token, type)) { + return block; + } + this.reconsumeToken(token); + block.values.push(this.consumeComponentValue()); + token = this.consumeToken(); + } + }; + Parser.prototype.consumeFunction = function (functionToken) { + var cssFunction = { + name: functionToken.value, + values: [], + type: 18 /* FUNCTION */ + }; + while (true) { + var token = this.consumeToken(); + if (token.type === 32 /* EOF_TOKEN */ || token.type === 3 /* RIGHT_PARENTHESIS_TOKEN */) { + return cssFunction; + } + this.reconsumeToken(token); + cssFunction.values.push(this.consumeComponentValue()); + } + }; + Parser.prototype.consumeToken = function () { + var token = this._tokens.shift(); + return typeof token === 'undefined' ? EOF_TOKEN : token; + }; + Parser.prototype.reconsumeToken = function (token) { + this._tokens.unshift(token); + }; + return Parser; + }()); + var isDimensionToken = function (token) { return token.type === 15 /* DIMENSION_TOKEN */; }; + var isNumberToken = function (token) { return token.type === 17 /* NUMBER_TOKEN */; }; + var isIdentToken = function (token) { return token.type === 20 /* IDENT_TOKEN */; }; + var isStringToken = function (token) { return token.type === 0 /* STRING_TOKEN */; }; + var isIdentWithValue = function (token, value) { + return isIdentToken(token) && token.value === value; + }; + var nonWhiteSpace = function (token) { return token.type !== 31 /* WHITESPACE_TOKEN */; }; + var nonFunctionArgSeparator = function (token) { + return token.type !== 31 /* WHITESPACE_TOKEN */ && token.type !== 4 /* COMMA_TOKEN */; + }; + var parseFunctionArgs = function (tokens) { + var args = []; + var arg = []; + tokens.forEach(function (token) { + if (token.type === 4 /* COMMA_TOKEN */) { + if (arg.length === 0) { + throw new Error("Error parsing function args, zero tokens for arg"); + } + args.push(arg); + arg = []; + return; + } + if (token.type !== 31 /* WHITESPACE_TOKEN */) { + arg.push(token); + } + }); + if (arg.length) { + args.push(arg); + } + return args; + }; + var isEndingTokenFor = function (token, type) { + if (type === 11 /* LEFT_CURLY_BRACKET_TOKEN */ && token.type === 12 /* RIGHT_CURLY_BRACKET_TOKEN */) { + return true; + } + if (type === 28 /* LEFT_SQUARE_BRACKET_TOKEN */ && token.type === 29 /* RIGHT_SQUARE_BRACKET_TOKEN */) { + return true; + } + return type === 2 /* LEFT_PARENTHESIS_TOKEN */ && token.type === 3 /* RIGHT_PARENTHESIS_TOKEN */; + }; + + var isLength = function (token) { + return token.type === 17 /* NUMBER_TOKEN */ || token.type === 15 /* DIMENSION_TOKEN */; + }; + + var isLengthPercentage = function (token) { + return token.type === 16 /* PERCENTAGE_TOKEN */ || isLength(token); + }; + var parseLengthPercentageTuple = function (tokens) { + return tokens.length > 1 ? [tokens[0], tokens[1]] : [tokens[0]]; + }; + var ZERO_LENGTH = { + type: 17 /* NUMBER_TOKEN */, + number: 0, + flags: FLAG_INTEGER + }; + var FIFTY_PERCENT = { + type: 16 /* PERCENTAGE_TOKEN */, + number: 50, + flags: FLAG_INTEGER + }; + var HUNDRED_PERCENT = { + type: 16 /* PERCENTAGE_TOKEN */, + number: 100, + flags: FLAG_INTEGER + }; + var getAbsoluteValueForTuple = function (tuple, width, height) { + var x = tuple[0], y = tuple[1]; + return [getAbsoluteValue(x, width), getAbsoluteValue(typeof y !== 'undefined' ? y : x, height)]; + }; + var getAbsoluteValue = function (token, parent) { + if (token.type === 16 /* PERCENTAGE_TOKEN */) { + return (token.number / 100) * parent; + } + if (isDimensionToken(token)) { + switch (token.unit) { + case 'rem': + case 'em': + return 16 * token.number; // TODO use correct font-size + case 'px': + default: + return token.number; + } + } + return token.number; + }; + + var DEG = 'deg'; + var GRAD = 'grad'; + var RAD = 'rad'; + var TURN = 'turn'; + var angle = { + name: 'angle', + parse: function (_context, value) { + if (value.type === 15 /* DIMENSION_TOKEN */) { + switch (value.unit) { + case DEG: + return (Math.PI * value.number) / 180; + case GRAD: + return (Math.PI / 200) * value.number; + case RAD: + return value.number; + case TURN: + return Math.PI * 2 * value.number; + } + } + throw new Error("Unsupported angle type"); + } + }; + var isAngle = function (value) { + if (value.type === 15 /* DIMENSION_TOKEN */) { + if (value.unit === DEG || value.unit === GRAD || value.unit === RAD || value.unit === TURN) { + return true; + } + } + return false; + }; + var parseNamedSide = function (tokens) { + var sideOrCorner = tokens + .filter(isIdentToken) + .map(function (ident) { return ident.value; }) + .join(' '); + switch (sideOrCorner) { + case 'to bottom right': + case 'to right bottom': + case 'left top': + case 'top left': + return [ZERO_LENGTH, ZERO_LENGTH]; + case 'to top': + case 'bottom': + return deg(0); + case 'to bottom left': + case 'to left bottom': + case 'right top': + case 'top right': + return [ZERO_LENGTH, HUNDRED_PERCENT]; + case 'to right': + case 'left': + return deg(90); + case 'to top left': + case 'to left top': + case 'right bottom': + case 'bottom right': + return [HUNDRED_PERCENT, HUNDRED_PERCENT]; + case 'to bottom': + case 'top': + return deg(180); + case 'to top right': + case 'to right top': + case 'left bottom': + case 'bottom left': + return [HUNDRED_PERCENT, ZERO_LENGTH]; + case 'to left': + case 'right': + return deg(270); + } + return 0; + }; + var deg = function (deg) { return (Math.PI * deg) / 180; }; + + var color$1 = { + name: 'color', + parse: function (context, value) { + if (value.type === 18 /* FUNCTION */) { + var colorFunction = SUPPORTED_COLOR_FUNCTIONS[value.name]; + if (typeof colorFunction === 'undefined') { + throw new Error("Attempting to parse an unsupported color function \"" + value.name + "\""); + } + return colorFunction(context, value.values); + } + if (value.type === 5 /* HASH_TOKEN */) { + if (value.value.length === 3) { + var r = value.value.substring(0, 1); + var g = value.value.substring(1, 2); + var b = value.value.substring(2, 3); + return pack(parseInt(r + r, 16), parseInt(g + g, 16), parseInt(b + b, 16), 1); + } + if (value.value.length === 4) { + var r = value.value.substring(0, 1); + var g = value.value.substring(1, 2); + var b = value.value.substring(2, 3); + var a = value.value.substring(3, 4); + return pack(parseInt(r + r, 16), parseInt(g + g, 16), parseInt(b + b, 16), parseInt(a + a, 16) / 255); + } + if (value.value.length === 6) { + var r = value.value.substring(0, 2); + var g = value.value.substring(2, 4); + var b = value.value.substring(4, 6); + return pack(parseInt(r, 16), parseInt(g, 16), parseInt(b, 16), 1); + } + if (value.value.length === 8) { + var r = value.value.substring(0, 2); + var g = value.value.substring(2, 4); + var b = value.value.substring(4, 6); + var a = value.value.substring(6, 8); + return pack(parseInt(r, 16), parseInt(g, 16), parseInt(b, 16), parseInt(a, 16) / 255); + } + } + if (value.type === 20 /* IDENT_TOKEN */) { + var namedColor = COLORS[value.value.toUpperCase()]; + if (typeof namedColor !== 'undefined') { + return namedColor; + } + } + return COLORS.TRANSPARENT; + } + }; + var isTransparent = function (color) { return (0xff & color) === 0; }; + var asString = function (color) { + var alpha = 0xff & color; + var blue = 0xff & (color >> 8); + var green = 0xff & (color >> 16); + var red = 0xff & (color >> 24); + return alpha < 255 ? "rgba(" + red + "," + green + "," + blue + "," + alpha / 255 + ")" : "rgb(" + red + "," + green + "," + blue + ")"; + }; + var pack = function (r, g, b, a) { + return ((r << 24) | (g << 16) | (b << 8) | (Math.round(a * 255) << 0)) >>> 0; + }; + var getTokenColorValue = function (token, i) { + if (token.type === 17 /* NUMBER_TOKEN */) { + return token.number; + } + if (token.type === 16 /* PERCENTAGE_TOKEN */) { + var max = i === 3 ? 1 : 255; + return i === 3 ? (token.number / 100) * max : Math.round((token.number / 100) * max); + } + return 0; + }; + var rgb = function (_context, args) { + var tokens = args.filter(nonFunctionArgSeparator); + if (tokens.length === 3) { + var _a = tokens.map(getTokenColorValue), r = _a[0], g = _a[1], b = _a[2]; + return pack(r, g, b, 1); + } + if (tokens.length === 4) { + var _b = tokens.map(getTokenColorValue), r = _b[0], g = _b[1], b = _b[2], a = _b[3]; + return pack(r, g, b, a); + } + return 0; + }; + function hue2rgb(t1, t2, hue) { + if (hue < 0) { + hue += 1; + } + if (hue >= 1) { + hue -= 1; + } + if (hue < 1 / 6) { + return (t2 - t1) * hue * 6 + t1; + } + else if (hue < 1 / 2) { + return t2; + } + else if (hue < 2 / 3) { + return (t2 - t1) * 6 * (2 / 3 - hue) + t1; + } + else { + return t1; + } + } + var hsl = function (context, args) { + var tokens = args.filter(nonFunctionArgSeparator); + var hue = tokens[0], saturation = tokens[1], lightness = tokens[2], alpha = tokens[3]; + var h = (hue.type === 17 /* NUMBER_TOKEN */ ? deg(hue.number) : angle.parse(context, hue)) / (Math.PI * 2); + var s = isLengthPercentage(saturation) ? saturation.number / 100 : 0; + var l = isLengthPercentage(lightness) ? lightness.number / 100 : 0; + var a = typeof alpha !== 'undefined' && isLengthPercentage(alpha) ? getAbsoluteValue(alpha, 1) : 1; + if (s === 0) { + return pack(l * 255, l * 255, l * 255, 1); + } + var t2 = l <= 0.5 ? l * (s + 1) : l + s - l * s; + var t1 = l * 2 - t2; + var r = hue2rgb(t1, t2, h + 1 / 3); + var g = hue2rgb(t1, t2, h); + var b = hue2rgb(t1, t2, h - 1 / 3); + return pack(r * 255, g * 255, b * 255, a); + }; + var SUPPORTED_COLOR_FUNCTIONS = { + hsl: hsl, + hsla: hsl, + rgb: rgb, + rgba: rgb + }; + var parseColor = function (context, value) { + return color$1.parse(context, Parser.create(value).parseComponentValue()); + }; + var COLORS = { + ALICEBLUE: 0xf0f8ffff, + ANTIQUEWHITE: 0xfaebd7ff, + AQUA: 0x00ffffff, + AQUAMARINE: 0x7fffd4ff, + AZURE: 0xf0ffffff, + BEIGE: 0xf5f5dcff, + BISQUE: 0xffe4c4ff, + BLACK: 0x000000ff, + BLANCHEDALMOND: 0xffebcdff, + BLUE: 0x0000ffff, + BLUEVIOLET: 0x8a2be2ff, + BROWN: 0xa52a2aff, + BURLYWOOD: 0xdeb887ff, + CADETBLUE: 0x5f9ea0ff, + CHARTREUSE: 0x7fff00ff, + CHOCOLATE: 0xd2691eff, + CORAL: 0xff7f50ff, + CORNFLOWERBLUE: 0x6495edff, + CORNSILK: 0xfff8dcff, + CRIMSON: 0xdc143cff, + CYAN: 0x00ffffff, + DARKBLUE: 0x00008bff, + DARKCYAN: 0x008b8bff, + DARKGOLDENROD: 0xb886bbff, + DARKGRAY: 0xa9a9a9ff, + DARKGREEN: 0x006400ff, + DARKGREY: 0xa9a9a9ff, + DARKKHAKI: 0xbdb76bff, + DARKMAGENTA: 0x8b008bff, + DARKOLIVEGREEN: 0x556b2fff, + DARKORANGE: 0xff8c00ff, + DARKORCHID: 0x9932ccff, + DARKRED: 0x8b0000ff, + DARKSALMON: 0xe9967aff, + DARKSEAGREEN: 0x8fbc8fff, + DARKSLATEBLUE: 0x483d8bff, + DARKSLATEGRAY: 0x2f4f4fff, + DARKSLATEGREY: 0x2f4f4fff, + DARKTURQUOISE: 0x00ced1ff, + DARKVIOLET: 0x9400d3ff, + DEEPPINK: 0xff1493ff, + DEEPSKYBLUE: 0x00bfffff, + DIMGRAY: 0x696969ff, + DIMGREY: 0x696969ff, + DODGERBLUE: 0x1e90ffff, + FIREBRICK: 0xb22222ff, + FLORALWHITE: 0xfffaf0ff, + FORESTGREEN: 0x228b22ff, + FUCHSIA: 0xff00ffff, + GAINSBORO: 0xdcdcdcff, + GHOSTWHITE: 0xf8f8ffff, + GOLD: 0xffd700ff, + GOLDENROD: 0xdaa520ff, + GRAY: 0x808080ff, + GREEN: 0x008000ff, + GREENYELLOW: 0xadff2fff, + GREY: 0x808080ff, + HONEYDEW: 0xf0fff0ff, + HOTPINK: 0xff69b4ff, + INDIANRED: 0xcd5c5cff, + INDIGO: 0x4b0082ff, + IVORY: 0xfffff0ff, + KHAKI: 0xf0e68cff, + LAVENDER: 0xe6e6faff, + LAVENDERBLUSH: 0xfff0f5ff, + LAWNGREEN: 0x7cfc00ff, + LEMONCHIFFON: 0xfffacdff, + LIGHTBLUE: 0xadd8e6ff, + LIGHTCORAL: 0xf08080ff, + LIGHTCYAN: 0xe0ffffff, + LIGHTGOLDENRODYELLOW: 0xfafad2ff, + LIGHTGRAY: 0xd3d3d3ff, + LIGHTGREEN: 0x90ee90ff, + LIGHTGREY: 0xd3d3d3ff, + LIGHTPINK: 0xffb6c1ff, + LIGHTSALMON: 0xffa07aff, + LIGHTSEAGREEN: 0x20b2aaff, + LIGHTSKYBLUE: 0x87cefaff, + LIGHTSLATEGRAY: 0x778899ff, + LIGHTSLATEGREY: 0x778899ff, + LIGHTSTEELBLUE: 0xb0c4deff, + LIGHTYELLOW: 0xffffe0ff, + LIME: 0x00ff00ff, + LIMEGREEN: 0x32cd32ff, + LINEN: 0xfaf0e6ff, + MAGENTA: 0xff00ffff, + MAROON: 0x800000ff, + MEDIUMAQUAMARINE: 0x66cdaaff, + MEDIUMBLUE: 0x0000cdff, + MEDIUMORCHID: 0xba55d3ff, + MEDIUMPURPLE: 0x9370dbff, + MEDIUMSEAGREEN: 0x3cb371ff, + MEDIUMSLATEBLUE: 0x7b68eeff, + MEDIUMSPRINGGREEN: 0x00fa9aff, + MEDIUMTURQUOISE: 0x48d1ccff, + MEDIUMVIOLETRED: 0xc71585ff, + MIDNIGHTBLUE: 0x191970ff, + MINTCREAM: 0xf5fffaff, + MISTYROSE: 0xffe4e1ff, + MOCCASIN: 0xffe4b5ff, + NAVAJOWHITE: 0xffdeadff, + NAVY: 0x000080ff, + OLDLACE: 0xfdf5e6ff, + OLIVE: 0x808000ff, + OLIVEDRAB: 0x6b8e23ff, + ORANGE: 0xffa500ff, + ORANGERED: 0xff4500ff, + ORCHID: 0xda70d6ff, + PALEGOLDENROD: 0xeee8aaff, + PALEGREEN: 0x98fb98ff, + PALETURQUOISE: 0xafeeeeff, + PALEVIOLETRED: 0xdb7093ff, + PAPAYAWHIP: 0xffefd5ff, + PEACHPUFF: 0xffdab9ff, + PERU: 0xcd853fff, + PINK: 0xffc0cbff, + PLUM: 0xdda0ddff, + POWDERBLUE: 0xb0e0e6ff, + PURPLE: 0x800080ff, + REBECCAPURPLE: 0x663399ff, + RED: 0xff0000ff, + ROSYBROWN: 0xbc8f8fff, + ROYALBLUE: 0x4169e1ff, + SADDLEBROWN: 0x8b4513ff, + SALMON: 0xfa8072ff, + SANDYBROWN: 0xf4a460ff, + SEAGREEN: 0x2e8b57ff, + SEASHELL: 0xfff5eeff, + SIENNA: 0xa0522dff, + SILVER: 0xc0c0c0ff, + SKYBLUE: 0x87ceebff, + SLATEBLUE: 0x6a5acdff, + SLATEGRAY: 0x708090ff, + SLATEGREY: 0x708090ff, + SNOW: 0xfffafaff, + SPRINGGREEN: 0x00ff7fff, + STEELBLUE: 0x4682b4ff, + TAN: 0xd2b48cff, + TEAL: 0x008080ff, + THISTLE: 0xd8bfd8ff, + TOMATO: 0xff6347ff, + TRANSPARENT: 0x00000000, + TURQUOISE: 0x40e0d0ff, + VIOLET: 0xee82eeff, + WHEAT: 0xf5deb3ff, + WHITE: 0xffffffff, + WHITESMOKE: 0xf5f5f5ff, + YELLOW: 0xffff00ff, + YELLOWGREEN: 0x9acd32ff + }; + + var backgroundClip = { + name: 'background-clip', + initialValue: 'border-box', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return tokens.map(function (token) { + if (isIdentToken(token)) { + switch (token.value) { + case 'padding-box': + return 1 /* PADDING_BOX */; + case 'content-box': + return 2 /* CONTENT_BOX */; + } + } + return 0 /* BORDER_BOX */; + }); + } + }; + + var backgroundColor = { + name: "background-color", + initialValue: 'transparent', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'color' + }; + + var parseColorStop = function (context, args) { + var color = color$1.parse(context, args[0]); + var stop = args[1]; + return stop && isLengthPercentage(stop) ? { color: color, stop: stop } : { color: color, stop: null }; + }; + var processColorStops = function (stops, lineLength) { + var first = stops[0]; + var last = stops[stops.length - 1]; + if (first.stop === null) { + first.stop = ZERO_LENGTH; + } + if (last.stop === null) { + last.stop = HUNDRED_PERCENT; + } + var processStops = []; + var previous = 0; + for (var i = 0; i < stops.length; i++) { + var stop_1 = stops[i].stop; + if (stop_1 !== null) { + var absoluteValue = getAbsoluteValue(stop_1, lineLength); + if (absoluteValue > previous) { + processStops.push(absoluteValue); + } + else { + processStops.push(previous); + } + previous = absoluteValue; + } + else { + processStops.push(null); + } + } + var gapBegin = null; + for (var i = 0; i < processStops.length; i++) { + var stop_2 = processStops[i]; + if (stop_2 === null) { + if (gapBegin === null) { + gapBegin = i; + } + } + else if (gapBegin !== null) { + var gapLength = i - gapBegin; + var beforeGap = processStops[gapBegin - 1]; + var gapValue = (stop_2 - beforeGap) / (gapLength + 1); + for (var g = 1; g <= gapLength; g++) { + processStops[gapBegin + g - 1] = gapValue * g; + } + gapBegin = null; + } + } + return stops.map(function (_a, i) { + var color = _a.color; + return { color: color, stop: Math.max(Math.min(1, processStops[i] / lineLength), 0) }; + }); + }; + var getAngleFromCorner = function (corner, width, height) { + var centerX = width / 2; + var centerY = height / 2; + var x = getAbsoluteValue(corner[0], width) - centerX; + var y = centerY - getAbsoluteValue(corner[1], height); + return (Math.atan2(y, x) + Math.PI * 2) % (Math.PI * 2); + }; + var calculateGradientDirection = function (angle, width, height) { + var radian = typeof angle === 'number' ? angle : getAngleFromCorner(angle, width, height); + var lineLength = Math.abs(width * Math.sin(radian)) + Math.abs(height * Math.cos(radian)); + var halfWidth = width / 2; + var halfHeight = height / 2; + var halfLineLength = lineLength / 2; + var yDiff = Math.sin(radian - Math.PI / 2) * halfLineLength; + var xDiff = Math.cos(radian - Math.PI / 2) * halfLineLength; + return [lineLength, halfWidth - xDiff, halfWidth + xDiff, halfHeight - yDiff, halfHeight + yDiff]; + }; + var distance = function (a, b) { return Math.sqrt(a * a + b * b); }; + var findCorner = function (width, height, x, y, closest) { + var corners = [ + [0, 0], + [0, height], + [width, 0], + [width, height] + ]; + return corners.reduce(function (stat, corner) { + var cx = corner[0], cy = corner[1]; + var d = distance(x - cx, y - cy); + if (closest ? d < stat.optimumDistance : d > stat.optimumDistance) { + return { + optimumCorner: corner, + optimumDistance: d + }; + } + return stat; + }, { + optimumDistance: closest ? Infinity : -Infinity, + optimumCorner: null + }).optimumCorner; + }; + var calculateRadius = function (gradient, x, y, width, height) { + var rx = 0; + var ry = 0; + switch (gradient.size) { + case 0 /* CLOSEST_SIDE */: + // The ending shape is sized so that that it exactly meets the side of the gradient box closest to the gradient’s center. + // If the shape is an ellipse, it exactly meets the closest side in each dimension. + if (gradient.shape === 0 /* CIRCLE */) { + rx = ry = Math.min(Math.abs(x), Math.abs(x - width), Math.abs(y), Math.abs(y - height)); + } + else if (gradient.shape === 1 /* ELLIPSE */) { + rx = Math.min(Math.abs(x), Math.abs(x - width)); + ry = Math.min(Math.abs(y), Math.abs(y - height)); + } + break; + case 2 /* CLOSEST_CORNER */: + // The ending shape is sized so that that it passes through the corner of the gradient box closest to the gradient’s center. + // If the shape is an ellipse, the ending shape is given the same aspect-ratio it would have if closest-side were specified. + if (gradient.shape === 0 /* CIRCLE */) { + rx = ry = Math.min(distance(x, y), distance(x, y - height), distance(x - width, y), distance(x - width, y - height)); + } + else if (gradient.shape === 1 /* ELLIPSE */) { + // Compute the ratio ry/rx (which is to be the same as for "closest-side") + var c = Math.min(Math.abs(y), Math.abs(y - height)) / Math.min(Math.abs(x), Math.abs(x - width)); + var _a = findCorner(width, height, x, y, true), cx = _a[0], cy = _a[1]; + rx = distance(cx - x, (cy - y) / c); + ry = c * rx; + } + break; + case 1 /* FARTHEST_SIDE */: + // Same as closest-side, except the ending shape is sized based on the farthest side(s) + if (gradient.shape === 0 /* CIRCLE */) { + rx = ry = Math.max(Math.abs(x), Math.abs(x - width), Math.abs(y), Math.abs(y - height)); + } + else if (gradient.shape === 1 /* ELLIPSE */) { + rx = Math.max(Math.abs(x), Math.abs(x - width)); + ry = Math.max(Math.abs(y), Math.abs(y - height)); + } + break; + case 3 /* FARTHEST_CORNER */: + // Same as closest-corner, except the ending shape is sized based on the farthest corner. + // If the shape is an ellipse, the ending shape is given the same aspect ratio it would have if farthest-side were specified. + if (gradient.shape === 0 /* CIRCLE */) { + rx = ry = Math.max(distance(x, y), distance(x, y - height), distance(x - width, y), distance(x - width, y - height)); + } + else if (gradient.shape === 1 /* ELLIPSE */) { + // Compute the ratio ry/rx (which is to be the same as for "farthest-side") + var c = Math.max(Math.abs(y), Math.abs(y - height)) / Math.max(Math.abs(x), Math.abs(x - width)); + var _b = findCorner(width, height, x, y, false), cx = _b[0], cy = _b[1]; + rx = distance(cx - x, (cy - y) / c); + ry = c * rx; + } + break; + } + if (Array.isArray(gradient.size)) { + rx = getAbsoluteValue(gradient.size[0], width); + ry = gradient.size.length === 2 ? getAbsoluteValue(gradient.size[1], height) : rx; + } + return [rx, ry]; + }; + + var linearGradient = function (context, tokens) { + var angle$1 = deg(180); + var stops = []; + parseFunctionArgs(tokens).forEach(function (arg, i) { + if (i === 0) { + var firstToken = arg[0]; + if (firstToken.type === 20 /* IDENT_TOKEN */ && firstToken.value === 'to') { + angle$1 = parseNamedSide(arg); + return; + } + else if (isAngle(firstToken)) { + angle$1 = angle.parse(context, firstToken); + return; + } + } + var colorStop = parseColorStop(context, arg); + stops.push(colorStop); + }); + return { angle: angle$1, stops: stops, type: 1 /* LINEAR_GRADIENT */ }; + }; + + var prefixLinearGradient = function (context, tokens) { + var angle$1 = deg(180); + var stops = []; + parseFunctionArgs(tokens).forEach(function (arg, i) { + if (i === 0) { + var firstToken = arg[0]; + if (firstToken.type === 20 /* IDENT_TOKEN */ && + ['top', 'left', 'right', 'bottom'].indexOf(firstToken.value) !== -1) { + angle$1 = parseNamedSide(arg); + return; + } + else if (isAngle(firstToken)) { + angle$1 = (angle.parse(context, firstToken) + deg(270)) % deg(360); + return; + } + } + var colorStop = parseColorStop(context, arg); + stops.push(colorStop); + }); + return { + angle: angle$1, + stops: stops, + type: 1 /* LINEAR_GRADIENT */ + }; + }; + + var webkitGradient = function (context, tokens) { + var angle = deg(180); + var stops = []; + var type = 1 /* LINEAR_GRADIENT */; + var shape = 0 /* CIRCLE */; + var size = 3 /* FARTHEST_CORNER */; + var position = []; + parseFunctionArgs(tokens).forEach(function (arg, i) { + var firstToken = arg[0]; + if (i === 0) { + if (isIdentToken(firstToken) && firstToken.value === 'linear') { + type = 1 /* LINEAR_GRADIENT */; + return; + } + else if (isIdentToken(firstToken) && firstToken.value === 'radial') { + type = 2 /* RADIAL_GRADIENT */; + return; + } + } + if (firstToken.type === 18 /* FUNCTION */) { + if (firstToken.name === 'from') { + var color = color$1.parse(context, firstToken.values[0]); + stops.push({ stop: ZERO_LENGTH, color: color }); + } + else if (firstToken.name === 'to') { + var color = color$1.parse(context, firstToken.values[0]); + stops.push({ stop: HUNDRED_PERCENT, color: color }); + } + else if (firstToken.name === 'color-stop') { + var values = firstToken.values.filter(nonFunctionArgSeparator); + if (values.length === 2) { + var color = color$1.parse(context, values[1]); + var stop_1 = values[0]; + if (isNumberToken(stop_1)) { + stops.push({ + stop: { type: 16 /* PERCENTAGE_TOKEN */, number: stop_1.number * 100, flags: stop_1.flags }, + color: color + }); + } + } + } + } + }); + return type === 1 /* LINEAR_GRADIENT */ + ? { + angle: (angle + deg(180)) % deg(360), + stops: stops, + type: type + } + : { size: size, shape: shape, stops: stops, position: position, type: type }; + }; + + var CLOSEST_SIDE = 'closest-side'; + var FARTHEST_SIDE = 'farthest-side'; + var CLOSEST_CORNER = 'closest-corner'; + var FARTHEST_CORNER = 'farthest-corner'; + var CIRCLE = 'circle'; + var ELLIPSE = 'ellipse'; + var COVER = 'cover'; + var CONTAIN = 'contain'; + var radialGradient = function (context, tokens) { + var shape = 0 /* CIRCLE */; + var size = 3 /* FARTHEST_CORNER */; + var stops = []; + var position = []; + parseFunctionArgs(tokens).forEach(function (arg, i) { + var isColorStop = true; + if (i === 0) { + var isAtPosition_1 = false; + isColorStop = arg.reduce(function (acc, token) { + if (isAtPosition_1) { + if (isIdentToken(token)) { + switch (token.value) { + case 'center': + position.push(FIFTY_PERCENT); + return acc; + case 'top': + case 'left': + position.push(ZERO_LENGTH); + return acc; + case 'right': + case 'bottom': + position.push(HUNDRED_PERCENT); + return acc; + } + } + else if (isLengthPercentage(token) || isLength(token)) { + position.push(token); + } + } + else if (isIdentToken(token)) { + switch (token.value) { + case CIRCLE: + shape = 0 /* CIRCLE */; + return false; + case ELLIPSE: + shape = 1 /* ELLIPSE */; + return false; + case 'at': + isAtPosition_1 = true; + return false; + case CLOSEST_SIDE: + size = 0 /* CLOSEST_SIDE */; + return false; + case COVER: + case FARTHEST_SIDE: + size = 1 /* FARTHEST_SIDE */; + return false; + case CONTAIN: + case CLOSEST_CORNER: + size = 2 /* CLOSEST_CORNER */; + return false; + case FARTHEST_CORNER: + size = 3 /* FARTHEST_CORNER */; + return false; + } + } + else if (isLength(token) || isLengthPercentage(token)) { + if (!Array.isArray(size)) { + size = []; + } + size.push(token); + return false; + } + return acc; + }, isColorStop); + } + if (isColorStop) { + var colorStop = parseColorStop(context, arg); + stops.push(colorStop); + } + }); + return { size: size, shape: shape, stops: stops, position: position, type: 2 /* RADIAL_GRADIENT */ }; + }; + + var prefixRadialGradient = function (context, tokens) { + var shape = 0 /* CIRCLE */; + var size = 3 /* FARTHEST_CORNER */; + var stops = []; + var position = []; + parseFunctionArgs(tokens).forEach(function (arg, i) { + var isColorStop = true; + if (i === 0) { + isColorStop = arg.reduce(function (acc, token) { + if (isIdentToken(token)) { + switch (token.value) { + case 'center': + position.push(FIFTY_PERCENT); + return false; + case 'top': + case 'left': + position.push(ZERO_LENGTH); + return false; + case 'right': + case 'bottom': + position.push(HUNDRED_PERCENT); + return false; + } + } + else if (isLengthPercentage(token) || isLength(token)) { + position.push(token); + return false; + } + return acc; + }, isColorStop); + } + else if (i === 1) { + isColorStop = arg.reduce(function (acc, token) { + if (isIdentToken(token)) { + switch (token.value) { + case CIRCLE: + shape = 0 /* CIRCLE */; + return false; + case ELLIPSE: + shape = 1 /* ELLIPSE */; + return false; + case CONTAIN: + case CLOSEST_SIDE: + size = 0 /* CLOSEST_SIDE */; + return false; + case FARTHEST_SIDE: + size = 1 /* FARTHEST_SIDE */; + return false; + case CLOSEST_CORNER: + size = 2 /* CLOSEST_CORNER */; + return false; + case COVER: + case FARTHEST_CORNER: + size = 3 /* FARTHEST_CORNER */; + return false; + } + } + else if (isLength(token) || isLengthPercentage(token)) { + if (!Array.isArray(size)) { + size = []; + } + size.push(token); + return false; + } + return acc; + }, isColorStop); + } + if (isColorStop) { + var colorStop = parseColorStop(context, arg); + stops.push(colorStop); + } + }); + return { size: size, shape: shape, stops: stops, position: position, type: 2 /* RADIAL_GRADIENT */ }; + }; + + var isLinearGradient = function (background) { + return background.type === 1 /* LINEAR_GRADIENT */; + }; + var isRadialGradient = function (background) { + return background.type === 2 /* RADIAL_GRADIENT */; + }; + var image = { + name: 'image', + parse: function (context, value) { + if (value.type === 22 /* URL_TOKEN */) { + var image_1 = { url: value.value, type: 0 /* URL */ }; + context.cache.addImage(value.value); + return image_1; + } + if (value.type === 18 /* FUNCTION */) { + var imageFunction = SUPPORTED_IMAGE_FUNCTIONS[value.name]; + if (typeof imageFunction === 'undefined') { + throw new Error("Attempting to parse an unsupported image function \"" + value.name + "\""); + } + return imageFunction(context, value.values); + } + throw new Error("Unsupported image type " + value.type); + } + }; + function isSupportedImage(value) { + return (!(value.type === 20 /* IDENT_TOKEN */ && value.value === 'none') && + (value.type !== 18 /* FUNCTION */ || !!SUPPORTED_IMAGE_FUNCTIONS[value.name])); + } + var SUPPORTED_IMAGE_FUNCTIONS = { + 'linear-gradient': linearGradient, + '-moz-linear-gradient': prefixLinearGradient, + '-ms-linear-gradient': prefixLinearGradient, + '-o-linear-gradient': prefixLinearGradient, + '-webkit-linear-gradient': prefixLinearGradient, + 'radial-gradient': radialGradient, + '-moz-radial-gradient': prefixRadialGradient, + '-ms-radial-gradient': prefixRadialGradient, + '-o-radial-gradient': prefixRadialGradient, + '-webkit-radial-gradient': prefixRadialGradient, + '-webkit-gradient': webkitGradient + }; + + var backgroundImage = { + name: 'background-image', + initialValue: 'none', + type: 1 /* LIST */, + prefix: false, + parse: function (context, tokens) { + if (tokens.length === 0) { + return []; + } + var first = tokens[0]; + if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') { + return []; + } + return tokens + .filter(function (value) { return nonFunctionArgSeparator(value) && isSupportedImage(value); }) + .map(function (value) { return image.parse(context, value); }); + } + }; + + var backgroundOrigin = { + name: 'background-origin', + initialValue: 'border-box', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return tokens.map(function (token) { + if (isIdentToken(token)) { + switch (token.value) { + case 'padding-box': + return 1 /* PADDING_BOX */; + case 'content-box': + return 2 /* CONTENT_BOX */; + } + } + return 0 /* BORDER_BOX */; + }); + } + }; + + var backgroundPosition = { + name: 'background-position', + initialValue: '0% 0%', + type: 1 /* LIST */, + prefix: false, + parse: function (_context, tokens) { + return parseFunctionArgs(tokens) + .map(function (values) { return values.filter(isLengthPercentage); }) + .map(parseLengthPercentageTuple); + } + }; + + var backgroundRepeat = { + name: 'background-repeat', + initialValue: 'repeat', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return parseFunctionArgs(tokens) + .map(function (values) { + return values + .filter(isIdentToken) + .map(function (token) { return token.value; }) + .join(' '); + }) + .map(parseBackgroundRepeat); + } + }; + var parseBackgroundRepeat = function (value) { + switch (value) { + case 'no-repeat': + return 1 /* NO_REPEAT */; + case 'repeat-x': + case 'repeat no-repeat': + return 2 /* REPEAT_X */; + case 'repeat-y': + case 'no-repeat repeat': + return 3 /* REPEAT_Y */; + case 'repeat': + default: + return 0 /* REPEAT */; + } + }; + + var BACKGROUND_SIZE; + (function (BACKGROUND_SIZE) { + BACKGROUND_SIZE["AUTO"] = "auto"; + BACKGROUND_SIZE["CONTAIN"] = "contain"; + BACKGROUND_SIZE["COVER"] = "cover"; + })(BACKGROUND_SIZE || (BACKGROUND_SIZE = {})); + var backgroundSize = { + name: 'background-size', + initialValue: '0', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return parseFunctionArgs(tokens).map(function (values) { return values.filter(isBackgroundSizeInfoToken); }); + } + }; + var isBackgroundSizeInfoToken = function (value) { + return isIdentToken(value) || isLengthPercentage(value); + }; + + var borderColorForSide = function (side) { return ({ + name: "border-" + side + "-color", + initialValue: 'transparent', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'color' + }); }; + var borderTopColor = borderColorForSide('top'); + var borderRightColor = borderColorForSide('right'); + var borderBottomColor = borderColorForSide('bottom'); + var borderLeftColor = borderColorForSide('left'); + + var borderRadiusForSide = function (side) { return ({ + name: "border-radius-" + side, + initialValue: '0 0', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return parseLengthPercentageTuple(tokens.filter(isLengthPercentage)); + } + }); }; + var borderTopLeftRadius = borderRadiusForSide('top-left'); + var borderTopRightRadius = borderRadiusForSide('top-right'); + var borderBottomRightRadius = borderRadiusForSide('bottom-right'); + var borderBottomLeftRadius = borderRadiusForSide('bottom-left'); + + var borderStyleForSide = function (side) { return ({ + name: "border-" + side + "-style", + initialValue: 'solid', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, style) { + switch (style) { + case 'none': + return 0 /* NONE */; + case 'dashed': + return 2 /* DASHED */; + case 'dotted': + return 3 /* DOTTED */; + case 'double': + return 4 /* DOUBLE */; + } + return 1 /* SOLID */; + } + }); }; + var borderTopStyle = borderStyleForSide('top'); + var borderRightStyle = borderStyleForSide('right'); + var borderBottomStyle = borderStyleForSide('bottom'); + var borderLeftStyle = borderStyleForSide('left'); + + var borderWidthForSide = function (side) { return ({ + name: "border-" + side + "-width", + initialValue: '0', + type: 0 /* VALUE */, + prefix: false, + parse: function (_context, token) { + if (isDimensionToken(token)) { + return token.number; + } + return 0; + } + }); }; + var borderTopWidth = borderWidthForSide('top'); + var borderRightWidth = borderWidthForSide('right'); + var borderBottomWidth = borderWidthForSide('bottom'); + var borderLeftWidth = borderWidthForSide('left'); + + var color = { + name: "color", + initialValue: 'transparent', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'color' + }; + + var direction = { + name: 'direction', + initialValue: 'ltr', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, direction) { + switch (direction) { + case 'rtl': + return 1 /* RTL */; + case 'ltr': + default: + return 0 /* LTR */; + } + } + }; + + var display = { + name: 'display', + initialValue: 'inline-block', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return tokens.filter(isIdentToken).reduce(function (bit, token) { + return bit | parseDisplayValue(token.value); + }, 0 /* NONE */); + } + }; + var parseDisplayValue = function (display) { + switch (display) { + case 'block': + case '-webkit-box': + return 2 /* BLOCK */; + case 'inline': + return 4 /* INLINE */; + case 'run-in': + return 8 /* RUN_IN */; + case 'flow': + return 16 /* FLOW */; + case 'flow-root': + return 32 /* FLOW_ROOT */; + case 'table': + return 64 /* TABLE */; + case 'flex': + case '-webkit-flex': + return 128 /* FLEX */; + case 'grid': + case '-ms-grid': + return 256 /* GRID */; + case 'ruby': + return 512 /* RUBY */; + case 'subgrid': + return 1024 /* SUBGRID */; + case 'list-item': + return 2048 /* LIST_ITEM */; + case 'table-row-group': + return 4096 /* TABLE_ROW_GROUP */; + case 'table-header-group': + return 8192 /* TABLE_HEADER_GROUP */; + case 'table-footer-group': + return 16384 /* TABLE_FOOTER_GROUP */; + case 'table-row': + return 32768 /* TABLE_ROW */; + case 'table-cell': + return 65536 /* TABLE_CELL */; + case 'table-column-group': + return 131072 /* TABLE_COLUMN_GROUP */; + case 'table-column': + return 262144 /* TABLE_COLUMN */; + case 'table-caption': + return 524288 /* TABLE_CAPTION */; + case 'ruby-base': + return 1048576 /* RUBY_BASE */; + case 'ruby-text': + return 2097152 /* RUBY_TEXT */; + case 'ruby-base-container': + return 4194304 /* RUBY_BASE_CONTAINER */; + case 'ruby-text-container': + return 8388608 /* RUBY_TEXT_CONTAINER */; + case 'contents': + return 16777216 /* CONTENTS */; + case 'inline-block': + return 33554432 /* INLINE_BLOCK */; + case 'inline-list-item': + return 67108864 /* INLINE_LIST_ITEM */; + case 'inline-table': + return 134217728 /* INLINE_TABLE */; + case 'inline-flex': + return 268435456 /* INLINE_FLEX */; + case 'inline-grid': + return 536870912 /* INLINE_GRID */; + } + return 0 /* NONE */; + }; + + var float = { + name: 'float', + initialValue: 'none', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, float) { + switch (float) { + case 'left': + return 1 /* LEFT */; + case 'right': + return 2 /* RIGHT */; + case 'inline-start': + return 3 /* INLINE_START */; + case 'inline-end': + return 4 /* INLINE_END */; + } + return 0 /* NONE */; + } + }; + + var letterSpacing = { + name: 'letter-spacing', + initialValue: '0', + prefix: false, + type: 0 /* VALUE */, + parse: function (_context, token) { + if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'normal') { + return 0; + } + if (token.type === 17 /* NUMBER_TOKEN */) { + return token.number; + } + if (token.type === 15 /* DIMENSION_TOKEN */) { + return token.number; + } + return 0; + } + }; + + var LINE_BREAK; + (function (LINE_BREAK) { + LINE_BREAK["NORMAL"] = "normal"; + LINE_BREAK["STRICT"] = "strict"; + })(LINE_BREAK || (LINE_BREAK = {})); + var lineBreak = { + name: 'line-break', + initialValue: 'normal', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, lineBreak) { + switch (lineBreak) { + case 'strict': + return LINE_BREAK.STRICT; + case 'normal': + default: + return LINE_BREAK.NORMAL; + } + } + }; + + var lineHeight = { + name: 'line-height', + initialValue: 'normal', + prefix: false, + type: 4 /* TOKEN_VALUE */ + }; + var computeLineHeight = function (token, fontSize) { + if (isIdentToken(token) && token.value === 'normal') { + return 1.2 * fontSize; + } + else if (token.type === 17 /* NUMBER_TOKEN */) { + return fontSize * token.number; + } + else if (isLengthPercentage(token)) { + return getAbsoluteValue(token, fontSize); + } + return fontSize; + }; + + var listStyleImage = { + name: 'list-style-image', + initialValue: 'none', + type: 0 /* VALUE */, + prefix: false, + parse: function (context, token) { + if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'none') { + return null; + } + return image.parse(context, token); + } + }; + + var listStylePosition = { + name: 'list-style-position', + initialValue: 'outside', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, position) { + switch (position) { + case 'inside': + return 0 /* INSIDE */; + case 'outside': + default: + return 1 /* OUTSIDE */; + } + } + }; + + var listStyleType = { + name: 'list-style-type', + initialValue: 'none', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, type) { + switch (type) { + case 'disc': + return 0 /* DISC */; + case 'circle': + return 1 /* CIRCLE */; + case 'square': + return 2 /* SQUARE */; + case 'decimal': + return 3 /* DECIMAL */; + case 'cjk-decimal': + return 4 /* CJK_DECIMAL */; + case 'decimal-leading-zero': + return 5 /* DECIMAL_LEADING_ZERO */; + case 'lower-roman': + return 6 /* LOWER_ROMAN */; + case 'upper-roman': + return 7 /* UPPER_ROMAN */; + case 'lower-greek': + return 8 /* LOWER_GREEK */; + case 'lower-alpha': + return 9 /* LOWER_ALPHA */; + case 'upper-alpha': + return 10 /* UPPER_ALPHA */; + case 'arabic-indic': + return 11 /* ARABIC_INDIC */; + case 'armenian': + return 12 /* ARMENIAN */; + case 'bengali': + return 13 /* BENGALI */; + case 'cambodian': + return 14 /* CAMBODIAN */; + case 'cjk-earthly-branch': + return 15 /* CJK_EARTHLY_BRANCH */; + case 'cjk-heavenly-stem': + return 16 /* CJK_HEAVENLY_STEM */; + case 'cjk-ideographic': + return 17 /* CJK_IDEOGRAPHIC */; + case 'devanagari': + return 18 /* DEVANAGARI */; + case 'ethiopic-numeric': + return 19 /* ETHIOPIC_NUMERIC */; + case 'georgian': + return 20 /* GEORGIAN */; + case 'gujarati': + return 21 /* GUJARATI */; + case 'gurmukhi': + return 22 /* GURMUKHI */; + case 'hebrew': + return 22 /* HEBREW */; + case 'hiragana': + return 23 /* HIRAGANA */; + case 'hiragana-iroha': + return 24 /* HIRAGANA_IROHA */; + case 'japanese-formal': + return 25 /* JAPANESE_FORMAL */; + case 'japanese-informal': + return 26 /* JAPANESE_INFORMAL */; + case 'kannada': + return 27 /* KANNADA */; + case 'katakana': + return 28 /* KATAKANA */; + case 'katakana-iroha': + return 29 /* KATAKANA_IROHA */; + case 'khmer': + return 30 /* KHMER */; + case 'korean-hangul-formal': + return 31 /* KOREAN_HANGUL_FORMAL */; + case 'korean-hanja-formal': + return 32 /* KOREAN_HANJA_FORMAL */; + case 'korean-hanja-informal': + return 33 /* KOREAN_HANJA_INFORMAL */; + case 'lao': + return 34 /* LAO */; + case 'lower-armenian': + return 35 /* LOWER_ARMENIAN */; + case 'malayalam': + return 36 /* MALAYALAM */; + case 'mongolian': + return 37 /* MONGOLIAN */; + case 'myanmar': + return 38 /* MYANMAR */; + case 'oriya': + return 39 /* ORIYA */; + case 'persian': + return 40 /* PERSIAN */; + case 'simp-chinese-formal': + return 41 /* SIMP_CHINESE_FORMAL */; + case 'simp-chinese-informal': + return 42 /* SIMP_CHINESE_INFORMAL */; + case 'tamil': + return 43 /* TAMIL */; + case 'telugu': + return 44 /* TELUGU */; + case 'thai': + return 45 /* THAI */; + case 'tibetan': + return 46 /* TIBETAN */; + case 'trad-chinese-formal': + return 47 /* TRAD_CHINESE_FORMAL */; + case 'trad-chinese-informal': + return 48 /* TRAD_CHINESE_INFORMAL */; + case 'upper-armenian': + return 49 /* UPPER_ARMENIAN */; + case 'disclosure-open': + return 50 /* DISCLOSURE_OPEN */; + case 'disclosure-closed': + return 51 /* DISCLOSURE_CLOSED */; + case 'none': + default: + return -1 /* NONE */; + } + } + }; + + var marginForSide = function (side) { return ({ + name: "margin-" + side, + initialValue: '0', + prefix: false, + type: 4 /* TOKEN_VALUE */ + }); }; + var marginTop = marginForSide('top'); + var marginRight = marginForSide('right'); + var marginBottom = marginForSide('bottom'); + var marginLeft = marginForSide('left'); + + var overflow = { + name: 'overflow', + initialValue: 'visible', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return tokens.filter(isIdentToken).map(function (overflow) { + switch (overflow.value) { + case 'hidden': + return 1 /* HIDDEN */; + case 'scroll': + return 2 /* SCROLL */; + case 'clip': + return 3 /* CLIP */; + case 'auto': + return 4 /* AUTO */; + case 'visible': + default: + return 0 /* VISIBLE */; + } + }); + } + }; + + var overflowWrap = { + name: 'overflow-wrap', + initialValue: 'normal', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, overflow) { + switch (overflow) { + case 'break-word': + return "break-word" /* BREAK_WORD */; + case 'normal': + default: + return "normal" /* NORMAL */; + } + } + }; + + var paddingForSide = function (side) { return ({ + name: "padding-" + side, + initialValue: '0', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'length-percentage' + }); }; + var paddingTop = paddingForSide('top'); + var paddingRight = paddingForSide('right'); + var paddingBottom = paddingForSide('bottom'); + var paddingLeft = paddingForSide('left'); + + var textAlign = { + name: 'text-align', + initialValue: 'left', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, textAlign) { + switch (textAlign) { + case 'right': + return 2 /* RIGHT */; + case 'center': + case 'justify': + return 1 /* CENTER */; + case 'left': + default: + return 0 /* LEFT */; + } + } + }; + + var position = { + name: 'position', + initialValue: 'static', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, position) { + switch (position) { + case 'relative': + return 1 /* RELATIVE */; + case 'absolute': + return 2 /* ABSOLUTE */; + case 'fixed': + return 3 /* FIXED */; + case 'sticky': + return 4 /* STICKY */; + } + return 0 /* STATIC */; + } + }; + + var textShadow = { + name: 'text-shadow', + initialValue: 'none', + type: 1 /* LIST */, + prefix: false, + parse: function (context, tokens) { + if (tokens.length === 1 && isIdentWithValue(tokens[0], 'none')) { + return []; + } + return parseFunctionArgs(tokens).map(function (values) { + var shadow = { + color: COLORS.TRANSPARENT, + offsetX: ZERO_LENGTH, + offsetY: ZERO_LENGTH, + blur: ZERO_LENGTH + }; + var c = 0; + for (var i = 0; i < values.length; i++) { + var token = values[i]; + if (isLength(token)) { + if (c === 0) { + shadow.offsetX = token; + } + else if (c === 1) { + shadow.offsetY = token; + } + else { + shadow.blur = token; + } + c++; + } + else { + shadow.color = color$1.parse(context, token); + } + } + return shadow; + }); + } + }; + + var textTransform = { + name: 'text-transform', + initialValue: 'none', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, textTransform) { + switch (textTransform) { + case 'uppercase': + return 2 /* UPPERCASE */; + case 'lowercase': + return 1 /* LOWERCASE */; + case 'capitalize': + return 3 /* CAPITALIZE */; + } + return 0 /* NONE */; + } + }; + + var transform$1 = { + name: 'transform', + initialValue: 'none', + prefix: true, + type: 0 /* VALUE */, + parse: function (_context, token) { + if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'none') { + return null; + } + if (token.type === 18 /* FUNCTION */) { + var transformFunction = SUPPORTED_TRANSFORM_FUNCTIONS[token.name]; + if (typeof transformFunction === 'undefined') { + throw new Error("Attempting to parse an unsupported transform function \"" + token.name + "\""); + } + return transformFunction(token.values); + } + return null; + } + }; + var matrix = function (args) { + var values = args.filter(function (arg) { return arg.type === 17 /* NUMBER_TOKEN */; }).map(function (arg) { return arg.number; }); + return values.length === 6 ? values : null; + }; + // doesn't support 3D transforms at the moment + var matrix3d = function (args) { + var values = args.filter(function (arg) { return arg.type === 17 /* NUMBER_TOKEN */; }).map(function (arg) { return arg.number; }); + var a1 = values[0], b1 = values[1]; values[2]; values[3]; var a2 = values[4], b2 = values[5]; values[6]; values[7]; values[8]; values[9]; values[10]; values[11]; var a4 = values[12], b4 = values[13]; values[14]; values[15]; + return values.length === 16 ? [a1, b1, a2, b2, a4, b4] : null; + }; + var SUPPORTED_TRANSFORM_FUNCTIONS = { + matrix: matrix, + matrix3d: matrix3d + }; + + var DEFAULT_VALUE = { + type: 16 /* PERCENTAGE_TOKEN */, + number: 50, + flags: FLAG_INTEGER + }; + var DEFAULT = [DEFAULT_VALUE, DEFAULT_VALUE]; + var transformOrigin = { + name: 'transform-origin', + initialValue: '50% 50%', + prefix: true, + type: 1 /* LIST */, + parse: function (_context, tokens) { + var origins = tokens.filter(isLengthPercentage); + if (origins.length !== 2) { + return DEFAULT; + } + return [origins[0], origins[1]]; + } + }; + + var visibility = { + name: 'visible', + initialValue: 'none', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, visibility) { + switch (visibility) { + case 'hidden': + return 1 /* HIDDEN */; + case 'collapse': + return 2 /* COLLAPSE */; + case 'visible': + default: + return 0 /* VISIBLE */; + } + } + }; + + var WORD_BREAK; + (function (WORD_BREAK) { + WORD_BREAK["NORMAL"] = "normal"; + WORD_BREAK["BREAK_ALL"] = "break-all"; + WORD_BREAK["KEEP_ALL"] = "keep-all"; + })(WORD_BREAK || (WORD_BREAK = {})); + var wordBreak = { + name: 'word-break', + initialValue: 'normal', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, wordBreak) { + switch (wordBreak) { + case 'break-all': + return WORD_BREAK.BREAK_ALL; + case 'keep-all': + return WORD_BREAK.KEEP_ALL; + case 'normal': + default: + return WORD_BREAK.NORMAL; + } + } + }; + + var zIndex = { + name: 'z-index', + initialValue: 'auto', + prefix: false, + type: 0 /* VALUE */, + parse: function (_context, token) { + if (token.type === 20 /* IDENT_TOKEN */) { + return { auto: true, order: 0 }; + } + if (isNumberToken(token)) { + return { auto: false, order: token.number }; + } + throw new Error("Invalid z-index number parsed"); + } + }; + + var time = { + name: 'time', + parse: function (_context, value) { + if (value.type === 15 /* DIMENSION_TOKEN */) { + switch (value.unit.toLowerCase()) { + case 's': + return 1000 * value.number; + case 'ms': + return value.number; + } + } + throw new Error("Unsupported time type"); + } + }; + + var opacity = { + name: 'opacity', + initialValue: '1', + type: 0 /* VALUE */, + prefix: false, + parse: function (_context, token) { + if (isNumberToken(token)) { + return token.number; + } + return 1; + } + }; + + var textDecorationColor = { + name: "text-decoration-color", + initialValue: 'transparent', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'color' + }; + + var textDecorationLine = { + name: 'text-decoration-line', + initialValue: 'none', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + return tokens + .filter(isIdentToken) + .map(function (token) { + switch (token.value) { + case 'underline': + return 1 /* UNDERLINE */; + case 'overline': + return 2 /* OVERLINE */; + case 'line-through': + return 3 /* LINE_THROUGH */; + case 'none': + return 4 /* BLINK */; + } + return 0 /* NONE */; + }) + .filter(function (line) { return line !== 0 /* NONE */; }); + } + }; + + var fontFamily = { + name: "font-family", + initialValue: '', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + var accumulator = []; + var results = []; + tokens.forEach(function (token) { + switch (token.type) { + case 20 /* IDENT_TOKEN */: + case 0 /* STRING_TOKEN */: + accumulator.push(token.value); + break; + case 17 /* NUMBER_TOKEN */: + accumulator.push(token.number.toString()); + break; + case 4 /* COMMA_TOKEN */: + results.push(accumulator.join(' ')); + accumulator.length = 0; + break; + } + }); + if (accumulator.length) { + results.push(accumulator.join(' ')); + } + return results.map(function (result) { return (result.indexOf(' ') === -1 ? result : "'" + result + "'"); }); + } + }; + + var fontSize = { + name: "font-size", + initialValue: '0', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'length' + }; + + var fontWeight = { + name: 'font-weight', + initialValue: 'normal', + type: 0 /* VALUE */, + prefix: false, + parse: function (_context, token) { + if (isNumberToken(token)) { + return token.number; + } + if (isIdentToken(token)) { + switch (token.value) { + case 'bold': + return 700; + case 'normal': + default: + return 400; + } + } + return 400; + } + }; + + var fontVariant = { + name: 'font-variant', + initialValue: 'none', + type: 1 /* LIST */, + prefix: false, + parse: function (_context, tokens) { + return tokens.filter(isIdentToken).map(function (token) { return token.value; }); + } + }; + + var fontStyle = { + name: 'font-style', + initialValue: 'normal', + prefix: false, + type: 2 /* IDENT_VALUE */, + parse: function (_context, overflow) { + switch (overflow) { + case 'oblique': + return "oblique" /* OBLIQUE */; + case 'italic': + return "italic" /* ITALIC */; + case 'normal': + default: + return "normal" /* NORMAL */; + } + } + }; + + var contains = function (bit, value) { return (bit & value) !== 0; }; + + var content = { + name: 'content', + initialValue: 'none', + type: 1 /* LIST */, + prefix: false, + parse: function (_context, tokens) { + if (tokens.length === 0) { + return []; + } + var first = tokens[0]; + if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') { + return []; + } + return tokens; + } + }; + + var counterIncrement = { + name: 'counter-increment', + initialValue: 'none', + prefix: true, + type: 1 /* LIST */, + parse: function (_context, tokens) { + if (tokens.length === 0) { + return null; + } + var first = tokens[0]; + if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') { + return null; + } + var increments = []; + var filtered = tokens.filter(nonWhiteSpace); + for (var i = 0; i < filtered.length; i++) { + var counter = filtered[i]; + var next = filtered[i + 1]; + if (counter.type === 20 /* IDENT_TOKEN */) { + var increment = next && isNumberToken(next) ? next.number : 1; + increments.push({ counter: counter.value, increment: increment }); + } + } + return increments; + } + }; + + var counterReset = { + name: 'counter-reset', + initialValue: 'none', + prefix: true, + type: 1 /* LIST */, + parse: function (_context, tokens) { + if (tokens.length === 0) { + return []; + } + var resets = []; + var filtered = tokens.filter(nonWhiteSpace); + for (var i = 0; i < filtered.length; i++) { + var counter = filtered[i]; + var next = filtered[i + 1]; + if (isIdentToken(counter) && counter.value !== 'none') { + var reset = next && isNumberToken(next) ? next.number : 0; + resets.push({ counter: counter.value, reset: reset }); + } + } + return resets; + } + }; + + var duration = { + name: 'duration', + initialValue: '0s', + prefix: false, + type: 1 /* LIST */, + parse: function (context, tokens) { + return tokens.filter(isDimensionToken).map(function (token) { return time.parse(context, token); }); + } + }; + + var quotes = { + name: 'quotes', + initialValue: 'none', + prefix: true, + type: 1 /* LIST */, + parse: function (_context, tokens) { + if (tokens.length === 0) { + return null; + } + var first = tokens[0]; + if (first.type === 20 /* IDENT_TOKEN */ && first.value === 'none') { + return null; + } + var quotes = []; + var filtered = tokens.filter(isStringToken); + if (filtered.length % 2 !== 0) { + return null; + } + for (var i = 0; i < filtered.length; i += 2) { + var open_1 = filtered[i].value; + var close_1 = filtered[i + 1].value; + quotes.push({ open: open_1, close: close_1 }); + } + return quotes; + } + }; + var getQuote = function (quotes, depth, open) { + if (!quotes) { + return ''; + } + var quote = quotes[Math.min(depth, quotes.length - 1)]; + if (!quote) { + return ''; + } + return open ? quote.open : quote.close; + }; + + var boxShadow = { + name: 'box-shadow', + initialValue: 'none', + type: 1 /* LIST */, + prefix: false, + parse: function (context, tokens) { + if (tokens.length === 1 && isIdentWithValue(tokens[0], 'none')) { + return []; + } + return parseFunctionArgs(tokens).map(function (values) { + var shadow = { + color: 0x000000ff, + offsetX: ZERO_LENGTH, + offsetY: ZERO_LENGTH, + blur: ZERO_LENGTH, + spread: ZERO_LENGTH, + inset: false + }; + var c = 0; + for (var i = 0; i < values.length; i++) { + var token = values[i]; + if (isIdentWithValue(token, 'inset')) { + shadow.inset = true; + } + else if (isLength(token)) { + if (c === 0) { + shadow.offsetX = token; + } + else if (c === 1) { + shadow.offsetY = token; + } + else if (c === 2) { + shadow.blur = token; + } + else { + shadow.spread = token; + } + c++; + } + else { + shadow.color = color$1.parse(context, token); + } + } + return shadow; + }); + } + }; + + var paintOrder = { + name: 'paint-order', + initialValue: 'normal', + prefix: false, + type: 1 /* LIST */, + parse: function (_context, tokens) { + var DEFAULT_VALUE = [0 /* FILL */, 1 /* STROKE */, 2 /* MARKERS */]; + var layers = []; + tokens.filter(isIdentToken).forEach(function (token) { + switch (token.value) { + case 'stroke': + layers.push(1 /* STROKE */); + break; + case 'fill': + layers.push(0 /* FILL */); + break; + case 'markers': + layers.push(2 /* MARKERS */); + break; + } + }); + DEFAULT_VALUE.forEach(function (value) { + if (layers.indexOf(value) === -1) { + layers.push(value); + } + }); + return layers; + } + }; + + var webkitTextStrokeColor = { + name: "-webkit-text-stroke-color", + initialValue: 'currentcolor', + prefix: false, + type: 3 /* TYPE_VALUE */, + format: 'color' + }; + + var webkitTextStrokeWidth = { + name: "-webkit-text-stroke-width", + initialValue: '0', + type: 0 /* VALUE */, + prefix: false, + parse: function (_context, token) { + if (isDimensionToken(token)) { + return token.number; + } + return 0; + } + }; + + var CSSParsedDeclaration = /** @class */ (function () { + function CSSParsedDeclaration(context, declaration) { + var _a, _b; + this.animationDuration = parse(context, duration, declaration.animationDuration); + this.backgroundClip = parse(context, backgroundClip, declaration.backgroundClip); + this.backgroundColor = parse(context, backgroundColor, declaration.backgroundColor); + this.backgroundImage = parse(context, backgroundImage, declaration.backgroundImage); + this.backgroundOrigin = parse(context, backgroundOrigin, declaration.backgroundOrigin); + this.backgroundPosition = parse(context, backgroundPosition, declaration.backgroundPosition); + this.backgroundRepeat = parse(context, backgroundRepeat, declaration.backgroundRepeat); + this.backgroundSize = parse(context, backgroundSize, declaration.backgroundSize); + this.borderTopColor = parse(context, borderTopColor, declaration.borderTopColor); + this.borderRightColor = parse(context, borderRightColor, declaration.borderRightColor); + this.borderBottomColor = parse(context, borderBottomColor, declaration.borderBottomColor); + this.borderLeftColor = parse(context, borderLeftColor, declaration.borderLeftColor); + this.borderTopLeftRadius = parse(context, borderTopLeftRadius, declaration.borderTopLeftRadius); + this.borderTopRightRadius = parse(context, borderTopRightRadius, declaration.borderTopRightRadius); + this.borderBottomRightRadius = parse(context, borderBottomRightRadius, declaration.borderBottomRightRadius); + this.borderBottomLeftRadius = parse(context, borderBottomLeftRadius, declaration.borderBottomLeftRadius); + this.borderTopStyle = parse(context, borderTopStyle, declaration.borderTopStyle); + this.borderRightStyle = parse(context, borderRightStyle, declaration.borderRightStyle); + this.borderBottomStyle = parse(context, borderBottomStyle, declaration.borderBottomStyle); + this.borderLeftStyle = parse(context, borderLeftStyle, declaration.borderLeftStyle); + this.borderTopWidth = parse(context, borderTopWidth, declaration.borderTopWidth); + this.borderRightWidth = parse(context, borderRightWidth, declaration.borderRightWidth); + this.borderBottomWidth = parse(context, borderBottomWidth, declaration.borderBottomWidth); + this.borderLeftWidth = parse(context, borderLeftWidth, declaration.borderLeftWidth); + this.boxShadow = parse(context, boxShadow, declaration.boxShadow); + this.color = parse(context, color, declaration.color); + this.direction = parse(context, direction, declaration.direction); + this.display = parse(context, display, declaration.display); + this.float = parse(context, float, declaration.cssFloat); + this.fontFamily = parse(context, fontFamily, declaration.fontFamily); + this.fontSize = parse(context, fontSize, declaration.fontSize); + this.fontStyle = parse(context, fontStyle, declaration.fontStyle); + this.fontVariant = parse(context, fontVariant, declaration.fontVariant); + this.fontWeight = parse(context, fontWeight, declaration.fontWeight); + this.letterSpacing = parse(context, letterSpacing, declaration.letterSpacing); + this.lineBreak = parse(context, lineBreak, declaration.lineBreak); + this.lineHeight = parse(context, lineHeight, declaration.lineHeight); + this.listStyleImage = parse(context, listStyleImage, declaration.listStyleImage); + this.listStylePosition = parse(context, listStylePosition, declaration.listStylePosition); + this.listStyleType = parse(context, listStyleType, declaration.listStyleType); + this.marginTop = parse(context, marginTop, declaration.marginTop); + this.marginRight = parse(context, marginRight, declaration.marginRight); + this.marginBottom = parse(context, marginBottom, declaration.marginBottom); + this.marginLeft = parse(context, marginLeft, declaration.marginLeft); + this.opacity = parse(context, opacity, declaration.opacity); + var overflowTuple = parse(context, overflow, declaration.overflow); + this.overflowX = overflowTuple[0]; + this.overflowY = overflowTuple[overflowTuple.length > 1 ? 1 : 0]; + this.overflowWrap = parse(context, overflowWrap, declaration.overflowWrap); + this.paddingTop = parse(context, paddingTop, declaration.paddingTop); + this.paddingRight = parse(context, paddingRight, declaration.paddingRight); + this.paddingBottom = parse(context, paddingBottom, declaration.paddingBottom); + this.paddingLeft = parse(context, paddingLeft, declaration.paddingLeft); + this.paintOrder = parse(context, paintOrder, declaration.paintOrder); + this.position = parse(context, position, declaration.position); + this.textAlign = parse(context, textAlign, declaration.textAlign); + this.textDecorationColor = parse(context, textDecorationColor, (_a = declaration.textDecorationColor) !== null && _a !== void 0 ? _a : declaration.color); + this.textDecorationLine = parse(context, textDecorationLine, (_b = declaration.textDecorationLine) !== null && _b !== void 0 ? _b : declaration.textDecoration); + this.textShadow = parse(context, textShadow, declaration.textShadow); + this.textTransform = parse(context, textTransform, declaration.textTransform); + this.transform = parse(context, transform$1, declaration.transform); + this.transformOrigin = parse(context, transformOrigin, declaration.transformOrigin); + this.visibility = parse(context, visibility, declaration.visibility); + this.webkitTextStrokeColor = parse(context, webkitTextStrokeColor, declaration.webkitTextStrokeColor); + this.webkitTextStrokeWidth = parse(context, webkitTextStrokeWidth, declaration.webkitTextStrokeWidth); + this.wordBreak = parse(context, wordBreak, declaration.wordBreak); + this.zIndex = parse(context, zIndex, declaration.zIndex); + } + CSSParsedDeclaration.prototype.isVisible = function () { + return this.display > 0 && this.opacity > 0 && this.visibility === 0 /* VISIBLE */; + }; + CSSParsedDeclaration.prototype.isTransparent = function () { + return isTransparent(this.backgroundColor); + }; + CSSParsedDeclaration.prototype.isTransformed = function () { + return this.transform !== null; + }; + CSSParsedDeclaration.prototype.isPositioned = function () { + return this.position !== 0 /* STATIC */; + }; + CSSParsedDeclaration.prototype.isPositionedWithZIndex = function () { + return this.isPositioned() && !this.zIndex.auto; + }; + CSSParsedDeclaration.prototype.isFloating = function () { + return this.float !== 0 /* NONE */; + }; + CSSParsedDeclaration.prototype.isInlineLevel = function () { + return (contains(this.display, 4 /* INLINE */) || + contains(this.display, 33554432 /* INLINE_BLOCK */) || + contains(this.display, 268435456 /* INLINE_FLEX */) || + contains(this.display, 536870912 /* INLINE_GRID */) || + contains(this.display, 67108864 /* INLINE_LIST_ITEM */) || + contains(this.display, 134217728 /* INLINE_TABLE */)); + }; + return CSSParsedDeclaration; + }()); + var CSSParsedPseudoDeclaration = /** @class */ (function () { + function CSSParsedPseudoDeclaration(context, declaration) { + this.content = parse(context, content, declaration.content); + this.quotes = parse(context, quotes, declaration.quotes); + } + return CSSParsedPseudoDeclaration; + }()); + var CSSParsedCounterDeclaration = /** @class */ (function () { + function CSSParsedCounterDeclaration(context, declaration) { + this.counterIncrement = parse(context, counterIncrement, declaration.counterIncrement); + this.counterReset = parse(context, counterReset, declaration.counterReset); + } + return CSSParsedCounterDeclaration; + }()); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var parse = function (context, descriptor, style) { + var tokenizer = new Tokenizer(); + var value = style !== null && typeof style !== 'undefined' ? style.toString() : descriptor.initialValue; + tokenizer.write(value); + var parser = new Parser(tokenizer.read()); + switch (descriptor.type) { + case 2 /* IDENT_VALUE */: + var token = parser.parseComponentValue(); + return descriptor.parse(context, isIdentToken(token) ? token.value : descriptor.initialValue); + case 0 /* VALUE */: + return descriptor.parse(context, parser.parseComponentValue()); + case 1 /* LIST */: + return descriptor.parse(context, parser.parseComponentValues()); + case 4 /* TOKEN_VALUE */: + return parser.parseComponentValue(); + case 3 /* TYPE_VALUE */: + switch (descriptor.format) { + case 'angle': + return angle.parse(context, parser.parseComponentValue()); + case 'color': + return color$1.parse(context, parser.parseComponentValue()); + case 'image': + return image.parse(context, parser.parseComponentValue()); + case 'length': + var length_1 = parser.parseComponentValue(); + return isLength(length_1) ? length_1 : ZERO_LENGTH; + case 'length-percentage': + var value_1 = parser.parseComponentValue(); + return isLengthPercentage(value_1) ? value_1 : ZERO_LENGTH; + case 'time': + return time.parse(context, parser.parseComponentValue()); + } + break; + } + }; + + var elementDebuggerAttribute = 'data-html2canvas-debug'; + var getElementDebugType = function (element) { + var attribute = element.getAttribute(elementDebuggerAttribute); + switch (attribute) { + case 'all': + return 1 /* ALL */; + case 'clone': + return 2 /* CLONE */; + case 'parse': + return 3 /* PARSE */; + case 'render': + return 4 /* RENDER */; + default: + return 0 /* NONE */; + } + }; + var isDebugging = function (element, type) { + var elementType = getElementDebugType(element); + return elementType === 1 /* ALL */ || type === elementType; + }; + + var ElementContainer = /** @class */ (function () { + function ElementContainer(context, element) { + this.context = context; + this.textNodes = []; + this.elements = []; + this.flags = 0; + if (isDebugging(element, 3 /* PARSE */)) { + debugger; + } + this.styles = new CSSParsedDeclaration(context, window.getComputedStyle(element, null)); + if (isHTMLElementNode(element)) { + if (this.styles.animationDuration.some(function (duration) { return duration > 0; })) { + element.style.animationDuration = '0s'; + } + if (this.styles.transform !== null) { + // getBoundingClientRect takes transforms into account + element.style.transform = 'none'; + } + } + this.bounds = parseBounds(this.context, element); + if (isDebugging(element, 4 /* RENDER */)) { + this.flags |= 16 /* DEBUG_RENDER */; + } + } + return ElementContainer; + }()); + + /* + * text-segmentation 1.0.3 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ + var base64 = 'AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA='; + + /* + * utrie 1.0.2 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ + var chars$1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + var lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (var i$1 = 0; i$1 < chars$1.length; i$1++) { + lookup$1[chars$1.charCodeAt(i$1)] = i$1; + } + var decode = function (base64) { + var bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4; + if (base64[base64.length - 1] === '=') { + bufferLength--; + if (base64[base64.length - 2] === '=') { + bufferLength--; + } + } + var buffer = typeof ArrayBuffer !== 'undefined' && + typeof Uint8Array !== 'undefined' && + typeof Uint8Array.prototype.slice !== 'undefined' + ? new ArrayBuffer(bufferLength) + : new Array(bufferLength); + var bytes = Array.isArray(buffer) ? buffer : new Uint8Array(buffer); + for (i = 0; i < len; i += 4) { + encoded1 = lookup$1[base64.charCodeAt(i)]; + encoded2 = lookup$1[base64.charCodeAt(i + 1)]; + encoded3 = lookup$1[base64.charCodeAt(i + 2)]; + encoded4 = lookup$1[base64.charCodeAt(i + 3)]; + bytes[p++] = (encoded1 << 2) | (encoded2 >> 4); + bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2); + bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63); + } + return buffer; + }; + var polyUint16Array = function (buffer) { + var length = buffer.length; + var bytes = []; + for (var i = 0; i < length; i += 2) { + bytes.push((buffer[i + 1] << 8) | buffer[i]); + } + return bytes; + }; + var polyUint32Array = function (buffer) { + var length = buffer.length; + var bytes = []; + for (var i = 0; i < length; i += 4) { + bytes.push((buffer[i + 3] << 24) | (buffer[i + 2] << 16) | (buffer[i + 1] << 8) | buffer[i]); + } + return bytes; + }; + + /** Shift size for getting the index-2 table offset. */ + var UTRIE2_SHIFT_2 = 5; + /** Shift size for getting the index-1 table offset. */ + var UTRIE2_SHIFT_1 = 6 + 5; + /** + * Shift size for shifting left the index array values. + * Increases possible data size with 16-bit index values at the cost + * of compactability. + * This requires data blocks to be aligned by UTRIE2_DATA_GRANULARITY. + */ + var UTRIE2_INDEX_SHIFT = 2; + /** + * Difference between the two shift sizes, + * for getting an index-1 offset from an index-2 offset. 6=11-5 + */ + var UTRIE2_SHIFT_1_2 = UTRIE2_SHIFT_1 - UTRIE2_SHIFT_2; + /** + * The part of the index-2 table for U+D800..U+DBFF stores values for + * lead surrogate code _units_ not code _points_. + * Values for lead surrogate code _points_ are indexed with this portion of the table. + * Length=32=0x20=0x400>>UTRIE2_SHIFT_2. (There are 1024=0x400 lead surrogates.) + */ + var UTRIE2_LSCP_INDEX_2_OFFSET = 0x10000 >> UTRIE2_SHIFT_2; + /** Number of entries in a data block. 32=0x20 */ + var UTRIE2_DATA_BLOCK_LENGTH = 1 << UTRIE2_SHIFT_2; + /** Mask for getting the lower bits for the in-data-block offset. */ + var UTRIE2_DATA_MASK = UTRIE2_DATA_BLOCK_LENGTH - 1; + var UTRIE2_LSCP_INDEX_2_LENGTH = 0x400 >> UTRIE2_SHIFT_2; + /** Count the lengths of both BMP pieces. 2080=0x820 */ + var UTRIE2_INDEX_2_BMP_LENGTH = UTRIE2_LSCP_INDEX_2_OFFSET + UTRIE2_LSCP_INDEX_2_LENGTH; + /** + * The 2-byte UTF-8 version of the index-2 table follows at offset 2080=0x820. + * Length 32=0x20 for lead bytes C0..DF, regardless of UTRIE2_SHIFT_2. + */ + var UTRIE2_UTF8_2B_INDEX_2_OFFSET = UTRIE2_INDEX_2_BMP_LENGTH; + var UTRIE2_UTF8_2B_INDEX_2_LENGTH = 0x800 >> 6; /* U+0800 is the first code point after 2-byte UTF-8 */ + /** + * The index-1 table, only used for supplementary code points, at offset 2112=0x840. + * Variable length, for code points up to highStart, where the last single-value range starts. + * Maximum length 512=0x200=0x100000>>UTRIE2_SHIFT_1. + * (For 0x100000 supplementary code points U+10000..U+10ffff.) + * + * The part of the index-2 table for supplementary code points starts + * after this index-1 table. + * + * Both the index-1 table and the following part of the index-2 table + * are omitted completely if there is only BMP data. + */ + var UTRIE2_INDEX_1_OFFSET = UTRIE2_UTF8_2B_INDEX_2_OFFSET + UTRIE2_UTF8_2B_INDEX_2_LENGTH; + /** + * Number of index-1 entries for the BMP. 32=0x20 + * This part of the index-1 table is omitted from the serialized form. + */ + var UTRIE2_OMITTED_BMP_INDEX_1_LENGTH = 0x10000 >> UTRIE2_SHIFT_1; + /** Number of entries in an index-2 block. 64=0x40 */ + var UTRIE2_INDEX_2_BLOCK_LENGTH = 1 << UTRIE2_SHIFT_1_2; + /** Mask for getting the lower bits for the in-index-2-block offset. */ + var UTRIE2_INDEX_2_MASK = UTRIE2_INDEX_2_BLOCK_LENGTH - 1; + var slice16 = function (view, start, end) { + if (view.slice) { + return view.slice(start, end); + } + return new Uint16Array(Array.prototype.slice.call(view, start, end)); + }; + var slice32 = function (view, start, end) { + if (view.slice) { + return view.slice(start, end); + } + return new Uint32Array(Array.prototype.slice.call(view, start, end)); + }; + var createTrieFromBase64 = function (base64, _byteLength) { + var buffer = decode(base64); + var view32 = Array.isArray(buffer) ? polyUint32Array(buffer) : new Uint32Array(buffer); + var view16 = Array.isArray(buffer) ? polyUint16Array(buffer) : new Uint16Array(buffer); + var headerLength = 24; + var index = slice16(view16, headerLength / 2, view32[4] / 2); + var data = view32[5] === 2 + ? slice16(view16, (headerLength + view32[4]) / 2) + : slice32(view32, Math.ceil((headerLength + view32[4]) / 4)); + return new Trie(view32[0], view32[1], view32[2], view32[3], index, data); + }; + var Trie = /** @class */ (function () { + function Trie(initialValue, errorValue, highStart, highValueIndex, index, data) { + this.initialValue = initialValue; + this.errorValue = errorValue; + this.highStart = highStart; + this.highValueIndex = highValueIndex; + this.index = index; + this.data = data; + } + /** + * Get the value for a code point as stored in the Trie. + * + * @param codePoint the code point + * @return the value + */ + Trie.prototype.get = function (codePoint) { + var ix; + if (codePoint >= 0) { + if (codePoint < 0x0d800 || (codePoint > 0x0dbff && codePoint <= 0x0ffff)) { + // Ordinary BMP code point, excluding leading surrogates. + // BMP uses a single level lookup. BMP index starts at offset 0 in the Trie2 index. + // 16 bit data is stored in the index array itself. + ix = this.index[codePoint >> UTRIE2_SHIFT_2]; + ix = (ix << UTRIE2_INDEX_SHIFT) + (codePoint & UTRIE2_DATA_MASK); + return this.data[ix]; + } + if (codePoint <= 0xffff) { + // Lead Surrogate Code Point. A Separate index section is stored for + // lead surrogate code units and code points. + // The main index has the code unit data. + // For this function, we need the code point data. + // Note: this expression could be refactored for slightly improved efficiency, but + // surrogate code points will be so rare in practice that it's not worth it. + ix = this.index[UTRIE2_LSCP_INDEX_2_OFFSET + ((codePoint - 0xd800) >> UTRIE2_SHIFT_2)]; + ix = (ix << UTRIE2_INDEX_SHIFT) + (codePoint & UTRIE2_DATA_MASK); + return this.data[ix]; + } + if (codePoint < this.highStart) { + // Supplemental code point, use two-level lookup. + ix = UTRIE2_INDEX_1_OFFSET - UTRIE2_OMITTED_BMP_INDEX_1_LENGTH + (codePoint >> UTRIE2_SHIFT_1); + ix = this.index[ix]; + ix += (codePoint >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK; + ix = this.index[ix]; + ix = (ix << UTRIE2_INDEX_SHIFT) + (codePoint & UTRIE2_DATA_MASK); + return this.data[ix]; + } + if (codePoint <= 0x10ffff) { + return this.data[this.highValueIndex]; + } + } + // Fall through. The code point is outside of the legal range of 0..0x10ffff. + return this.errorValue; + }; + return Trie; + }()); + + /* + * base64-arraybuffer 1.0.2 + * Copyright (c) 2022 Niklas von Hertzen + * Released under MIT License + */ + var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + var lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (var i = 0; i < chars.length; i++) { + lookup[chars.charCodeAt(i)] = i; + } + + var Prepend = 1; + var CR = 2; + var LF = 3; + var Control = 4; + var Extend = 5; + var SpacingMark = 7; + var L = 8; + var V = 9; + var T = 10; + var LV = 11; + var LVT = 12; + var ZWJ = 13; + var Extended_Pictographic = 14; + var RI = 15; + var toCodePoints = function (str) { + var codePoints = []; + var i = 0; + var length = str.length; + while (i < length) { + var value = str.charCodeAt(i++); + if (value >= 0xd800 && value <= 0xdbff && i < length) { + var extra = str.charCodeAt(i++); + if ((extra & 0xfc00) === 0xdc00) { + codePoints.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000); + } + else { + codePoints.push(value); + i--; + } + } + else { + codePoints.push(value); + } + } + return codePoints; + }; + var fromCodePoint = function () { + var codePoints = []; + for (var _i = 0; _i < arguments.length; _i++) { + codePoints[_i] = arguments[_i]; + } + if (String.fromCodePoint) { + return String.fromCodePoint.apply(String, codePoints); + } + var length = codePoints.length; + if (!length) { + return ''; + } + var codeUnits = []; + var index = -1; + var result = ''; + while (++index < length) { + var codePoint = codePoints[index]; + if (codePoint <= 0xffff) { + codeUnits.push(codePoint); + } + else { + codePoint -= 0x10000; + codeUnits.push((codePoint >> 10) + 0xd800, (codePoint % 0x400) + 0xdc00); + } + if (index + 1 === length || codeUnits.length > 0x4000) { + result += String.fromCharCode.apply(String, codeUnits); + codeUnits.length = 0; + } + } + return result; + }; + var UnicodeTrie = createTrieFromBase64(base64); + var BREAK_NOT_ALLOWED = '×'; + var BREAK_ALLOWED = '÷'; + var codePointToClass = function (codePoint) { return UnicodeTrie.get(codePoint); }; + var _graphemeBreakAtIndex = function (_codePoints, classTypes, index) { + var prevIndex = index - 2; + var prev = classTypes[prevIndex]; + var current = classTypes[index - 1]; + var next = classTypes[index]; + // GB3 Do not break between a CR and LF + if (current === CR && next === LF) { + return BREAK_NOT_ALLOWED; + } + // GB4 Otherwise, break before and after controls. + if (current === CR || current === LF || current === Control) { + return BREAK_ALLOWED; + } + // GB5 + if (next === CR || next === LF || next === Control) { + return BREAK_ALLOWED; + } + // Do not break Hangul syllable sequences. + // GB6 + if (current === L && [L, V, LV, LVT].indexOf(next) !== -1) { + return BREAK_NOT_ALLOWED; + } + // GB7 + if ((current === LV || current === V) && (next === V || next === T)) { + return BREAK_NOT_ALLOWED; + } + // GB8 + if ((current === LVT || current === T) && next === T) { + return BREAK_NOT_ALLOWED; + } + // GB9 Do not break before extending characters or ZWJ. + if (next === ZWJ || next === Extend) { + return BREAK_NOT_ALLOWED; + } + // Do not break before SpacingMarks, or after Prepend characters. + // GB9a + if (next === SpacingMark) { + return BREAK_NOT_ALLOWED; + } + // GB9a + if (current === Prepend) { + return BREAK_NOT_ALLOWED; + } + // GB11 Do not break within emoji modifier sequences or emoji zwj sequences. + if (current === ZWJ && next === Extended_Pictographic) { + while (prev === Extend) { + prev = classTypes[--prevIndex]; + } + if (prev === Extended_Pictographic) { + return BREAK_NOT_ALLOWED; + } + } + // GB12 Do not break within emoji flag sequences. + // That is, do not break between regional indicator (RI) symbols + // if there is an odd number of RI characters before the break point. + if (current === RI && next === RI) { + var countRI = 0; + while (prev === RI) { + countRI++; + prev = classTypes[--prevIndex]; + } + if (countRI % 2 === 0) { + return BREAK_NOT_ALLOWED; + } + } + return BREAK_ALLOWED; + }; + var GraphemeBreaker = function (str) { + var codePoints = toCodePoints(str); + var length = codePoints.length; + var index = 0; + var lastEnd = 0; + var classTypes = codePoints.map(codePointToClass); + return { + next: function () { + if (index >= length) { + return { done: true, value: null }; + } + var graphemeBreak = BREAK_NOT_ALLOWED; + while (index < length && + (graphemeBreak = _graphemeBreakAtIndex(codePoints, classTypes, ++index)) === BREAK_NOT_ALLOWED) { } + if (graphemeBreak !== BREAK_NOT_ALLOWED || index === length) { + var value = fromCodePoint.apply(null, codePoints.slice(lastEnd, index)); + lastEnd = index; + return { value: value, done: false }; + } + return { done: true, value: null }; + }, + }; + }; + var splitGraphemes = function (str) { + var breaker = GraphemeBreaker(str); + var graphemes = []; + var bk; + while (!(bk = breaker.next()).done) { + if (bk.value) { + graphemes.push(bk.value.slice()); + } + } + return graphemes; + }; + + var testRangeBounds = function (document) { + var TEST_HEIGHT = 123; + if (document.createRange) { + var range = document.createRange(); + if (range.getBoundingClientRect) { + var testElement = document.createElement('boundtest'); + testElement.style.height = TEST_HEIGHT + "px"; + testElement.style.display = 'block'; + document.body.appendChild(testElement); + range.selectNode(testElement); + var rangeBounds = range.getBoundingClientRect(); + var rangeHeight = Math.round(rangeBounds.height); + document.body.removeChild(testElement); + if (rangeHeight === TEST_HEIGHT) { + return true; + } + } + } + return false; + }; + var testIOSLineBreak = function (document) { + var testElement = document.createElement('boundtest'); + testElement.style.width = '50px'; + testElement.style.display = 'block'; + testElement.style.fontSize = '12px'; + testElement.style.letterSpacing = '0px'; + testElement.style.wordSpacing = '0px'; + document.body.appendChild(testElement); + var range = document.createRange(); + testElement.innerHTML = typeof ''.repeat === 'function' ? '👨'.repeat(10) : ''; + var node = testElement.firstChild; + var textList = toCodePoints$1(node.data).map(function (i) { return fromCodePoint$1(i); }); + var offset = 0; + var prev = {}; + // ios 13 does not handle range getBoundingClientRect line changes correctly #2177 + var supports = textList.every(function (text, i) { + range.setStart(node, offset); + range.setEnd(node, offset + text.length); + var rect = range.getBoundingClientRect(); + offset += text.length; + var boundAhead = rect.x > prev.x || rect.y > prev.y; + prev = rect; + if (i === 0) { + return true; + } + return boundAhead; + }); + document.body.removeChild(testElement); + return supports; + }; + var testCORS = function () { return typeof new Image().crossOrigin !== 'undefined'; }; + var testResponseType = function () { return typeof new XMLHttpRequest().responseType === 'string'; }; + var testSVG = function (document) { + var img = new Image(); + var canvas = document.createElement('canvas'); + var ctx = canvas.getContext('2d'); + if (!ctx) { + return false; + } + img.src = "data:image/svg+xml,"; + try { + ctx.drawImage(img, 0, 0); + canvas.toDataURL(); + } + catch (e) { + return false; + } + return true; + }; + var isGreenPixel = function (data) { + return data[0] === 0 && data[1] === 255 && data[2] === 0 && data[3] === 255; + }; + var testForeignObject = function (document) { + var canvas = document.createElement('canvas'); + var size = 100; + canvas.width = size; + canvas.height = size; + var ctx = canvas.getContext('2d'); + if (!ctx) { + return Promise.reject(false); + } + ctx.fillStyle = 'rgb(0, 255, 0)'; + ctx.fillRect(0, 0, size, size); + var img = new Image(); + var greenImageSrc = canvas.toDataURL(); + img.src = greenImageSrc; + var svg = createForeignObjectSVG(size, size, 0, 0, img); + ctx.fillStyle = 'red'; + ctx.fillRect(0, 0, size, size); + return loadSerializedSVG$1(svg) + .then(function (img) { + ctx.drawImage(img, 0, 0); + var data = ctx.getImageData(0, 0, size, size).data; + ctx.fillStyle = 'red'; + ctx.fillRect(0, 0, size, size); + var node = document.createElement('div'); + node.style.backgroundImage = "url(" + greenImageSrc + ")"; + node.style.height = size + "px"; + // Firefox 55 does not render inline tags + return isGreenPixel(data) + ? loadSerializedSVG$1(createForeignObjectSVG(size, size, 0, 0, node)) + : Promise.reject(false); + }) + .then(function (img) { + ctx.drawImage(img, 0, 0); + // Edge does not render background-images + return isGreenPixel(ctx.getImageData(0, 0, size, size).data); + }) + .catch(function () { return false; }); + }; + var createForeignObjectSVG = function (width, height, x, y, node) { + var xmlns = 'http://www.w3.org/2000/svg'; + var svg = document.createElementNS(xmlns, 'svg'); + var foreignObject = document.createElementNS(xmlns, 'foreignObject'); + svg.setAttributeNS(null, 'width', width.toString()); + svg.setAttributeNS(null, 'height', height.toString()); + foreignObject.setAttributeNS(null, 'width', '100%'); + foreignObject.setAttributeNS(null, 'height', '100%'); + foreignObject.setAttributeNS(null, 'x', x.toString()); + foreignObject.setAttributeNS(null, 'y', y.toString()); + foreignObject.setAttributeNS(null, 'externalResourcesRequired', 'true'); + svg.appendChild(foreignObject); + foreignObject.appendChild(node); + return svg; + }; + var loadSerializedSVG$1 = function (svg) { + return new Promise(function (resolve, reject) { + var img = new Image(); + img.onload = function () { return resolve(img); }; + img.onerror = reject; + img.src = "data:image/svg+xml;charset=utf-8," + encodeURIComponent(new XMLSerializer().serializeToString(svg)); + }); + }; + var FEATURES = { + get SUPPORT_RANGE_BOUNDS() { + var value = testRangeBounds(document); + Object.defineProperty(FEATURES, 'SUPPORT_RANGE_BOUNDS', { value: value }); + return value; + }, + get SUPPORT_WORD_BREAKING() { + var value = FEATURES.SUPPORT_RANGE_BOUNDS && testIOSLineBreak(document); + Object.defineProperty(FEATURES, 'SUPPORT_WORD_BREAKING', { value: value }); + return value; + }, + get SUPPORT_SVG_DRAWING() { + var value = testSVG(document); + Object.defineProperty(FEATURES, 'SUPPORT_SVG_DRAWING', { value: value }); + return value; + }, + get SUPPORT_FOREIGNOBJECT_DRAWING() { + var value = typeof Array.from === 'function' && typeof window.fetch === 'function' + ? testForeignObject(document) + : Promise.resolve(false); + Object.defineProperty(FEATURES, 'SUPPORT_FOREIGNOBJECT_DRAWING', { value: value }); + return value; + }, + get SUPPORT_CORS_IMAGES() { + var value = testCORS(); + Object.defineProperty(FEATURES, 'SUPPORT_CORS_IMAGES', { value: value }); + return value; + }, + get SUPPORT_RESPONSE_TYPE() { + var value = testResponseType(); + Object.defineProperty(FEATURES, 'SUPPORT_RESPONSE_TYPE', { value: value }); + return value; + }, + get SUPPORT_CORS_XHR() { + var value = 'withCredentials' in new XMLHttpRequest(); + Object.defineProperty(FEATURES, 'SUPPORT_CORS_XHR', { value: value }); + return value; + }, + get SUPPORT_NATIVE_TEXT_SEGMENTATION() { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var value = !!(typeof Intl !== 'undefined' && Intl.Segmenter); + Object.defineProperty(FEATURES, 'SUPPORT_NATIVE_TEXT_SEGMENTATION', { value: value }); + return value; + } + }; + + var TextBounds = /** @class */ (function () { + function TextBounds(text, bounds) { + this.text = text; + this.bounds = bounds; + } + return TextBounds; + }()); + var parseTextBounds = function (context, value, styles, node) { + var textList = breakText(value, styles); + var textBounds = []; + var offset = 0; + textList.forEach(function (text) { + if (styles.textDecorationLine.length || text.trim().length > 0) { + if (FEATURES.SUPPORT_RANGE_BOUNDS) { + var clientRects = createRange(node, offset, text.length).getClientRects(); + if (clientRects.length > 1) { + var subSegments = segmentGraphemes(text); + var subOffset_1 = 0; + subSegments.forEach(function (subSegment) { + textBounds.push(new TextBounds(subSegment, Bounds.fromDOMRectList(context, createRange(node, subOffset_1 + offset, subSegment.length).getClientRects()))); + subOffset_1 += subSegment.length; + }); + } + else { + textBounds.push(new TextBounds(text, Bounds.fromDOMRectList(context, clientRects))); + } + } + else { + var replacementNode = node.splitText(text.length); + textBounds.push(new TextBounds(text, getWrapperBounds(context, node))); + node = replacementNode; + } + } + else if (!FEATURES.SUPPORT_RANGE_BOUNDS) { + node = node.splitText(text.length); + } + offset += text.length; + }); + return textBounds; + }; + var getWrapperBounds = function (context, node) { + var ownerDocument = node.ownerDocument; + if (ownerDocument) { + var wrapper = ownerDocument.createElement('html2canvaswrapper'); + wrapper.appendChild(node.cloneNode(true)); + var parentNode = node.parentNode; + if (parentNode) { + parentNode.replaceChild(wrapper, node); + var bounds = parseBounds(context, wrapper); + if (wrapper.firstChild) { + parentNode.replaceChild(wrapper.firstChild, wrapper); + } + return bounds; + } + } + return Bounds.EMPTY; + }; + var createRange = function (node, offset, length) { + var ownerDocument = node.ownerDocument; + if (!ownerDocument) { + throw new Error('Node has no owner document'); + } + var range = ownerDocument.createRange(); + range.setStart(node, offset); + range.setEnd(node, offset + length); + return range; + }; + var segmentGraphemes = function (value) { + if (FEATURES.SUPPORT_NATIVE_TEXT_SEGMENTATION) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var segmenter = new Intl.Segmenter(void 0, { granularity: 'grapheme' }); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return Array.from(segmenter.segment(value)).map(function (segment) { return segment.segment; }); + } + return splitGraphemes(value); + }; + var segmentWords = function (value, styles) { + if (FEATURES.SUPPORT_NATIVE_TEXT_SEGMENTATION) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var segmenter = new Intl.Segmenter(void 0, { + granularity: 'word' + }); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return Array.from(segmenter.segment(value)).map(function (segment) { return segment.segment; }); + } + return breakWords(value, styles); + }; + var breakText = function (value, styles) { + return styles.letterSpacing !== 0 ? segmentGraphemes(value) : segmentWords(value, styles); + }; + // https://drafts.csswg.org/css-text/#word-separator + var wordSeparators = [0x0020, 0x00a0, 0x1361, 0x10100, 0x10101, 0x1039, 0x1091]; + var breakWords = function (str, styles) { + var breaker = LineBreaker(str, { + lineBreak: styles.lineBreak, + wordBreak: styles.overflowWrap === "break-word" /* BREAK_WORD */ ? 'break-word' : styles.wordBreak + }); + var words = []; + var bk; + var _loop_1 = function () { + if (bk.value) { + var value = bk.value.slice(); + var codePoints = toCodePoints$1(value); + var word_1 = ''; + codePoints.forEach(function (codePoint) { + if (wordSeparators.indexOf(codePoint) === -1) { + word_1 += fromCodePoint$1(codePoint); + } + else { + if (word_1.length) { + words.push(word_1); + } + words.push(fromCodePoint$1(codePoint)); + word_1 = ''; + } + }); + if (word_1.length) { + words.push(word_1); + } + } + }; + while (!(bk = breaker.next()).done) { + _loop_1(); + } + return words; + }; + + var TextContainer = /** @class */ (function () { + function TextContainer(context, node, styles) { + this.text = transform(node.data, styles.textTransform); + this.textBounds = parseTextBounds(context, this.text, styles, node); + } + return TextContainer; + }()); + var transform = function (text, transform) { + switch (transform) { + case 1 /* LOWERCASE */: + return text.toLowerCase(); + case 3 /* CAPITALIZE */: + return text.replace(CAPITALIZE, capitalize); + case 2 /* UPPERCASE */: + return text.toUpperCase(); + default: + return text; + } + }; + var CAPITALIZE = /(^|\s|:|-|\(|\))([a-z])/g; + var capitalize = function (m, p1, p2) { + if (m.length > 0) { + return p1 + p2.toUpperCase(); + } + return m; + }; + + var ImageElementContainer = /** @class */ (function (_super) { + __extends(ImageElementContainer, _super); + function ImageElementContainer(context, img) { + var _this = _super.call(this, context, img) || this; + _this.src = img.currentSrc || img.src; + _this.intrinsicWidth = img.naturalWidth; + _this.intrinsicHeight = img.naturalHeight; + _this.context.cache.addImage(_this.src); + return _this; + } + return ImageElementContainer; + }(ElementContainer)); + + var CanvasElementContainer = /** @class */ (function (_super) { + __extends(CanvasElementContainer, _super); + function CanvasElementContainer(context, canvas) { + var _this = _super.call(this, context, canvas) || this; + _this.canvas = canvas; + _this.intrinsicWidth = canvas.width; + _this.intrinsicHeight = canvas.height; + return _this; + } + return CanvasElementContainer; + }(ElementContainer)); + + var SVGElementContainer = /** @class */ (function (_super) { + __extends(SVGElementContainer, _super); + function SVGElementContainer(context, img) { + var _this = _super.call(this, context, img) || this; + var s = new XMLSerializer(); + var bounds = parseBounds(context, img); + img.setAttribute('width', bounds.width + "px"); + img.setAttribute('height', bounds.height + "px"); + _this.svg = "data:image/svg+xml," + encodeURIComponent(s.serializeToString(img)); + _this.intrinsicWidth = img.width.baseVal.value; + _this.intrinsicHeight = img.height.baseVal.value; + _this.context.cache.addImage(_this.svg); + return _this; + } + return SVGElementContainer; + }(ElementContainer)); + + var LIElementContainer = /** @class */ (function (_super) { + __extends(LIElementContainer, _super); + function LIElementContainer(context, element) { + var _this = _super.call(this, context, element) || this; + _this.value = element.value; + return _this; + } + return LIElementContainer; + }(ElementContainer)); + + var OLElementContainer = /** @class */ (function (_super) { + __extends(OLElementContainer, _super); + function OLElementContainer(context, element) { + var _this = _super.call(this, context, element) || this; + _this.start = element.start; + _this.reversed = typeof element.reversed === 'boolean' && element.reversed === true; + return _this; + } + return OLElementContainer; + }(ElementContainer)); + + var CHECKBOX_BORDER_RADIUS = [ + { + type: 15 /* DIMENSION_TOKEN */, + flags: 0, + unit: 'px', + number: 3 + } + ]; + var RADIO_BORDER_RADIUS = [ + { + type: 16 /* PERCENTAGE_TOKEN */, + flags: 0, + number: 50 + } + ]; + var reformatInputBounds = function (bounds) { + if (bounds.width > bounds.height) { + return new Bounds(bounds.left + (bounds.width - bounds.height) / 2, bounds.top, bounds.height, bounds.height); + } + else if (bounds.width < bounds.height) { + return new Bounds(bounds.left, bounds.top + (bounds.height - bounds.width) / 2, bounds.width, bounds.width); + } + return bounds; + }; + var getInputValue = function (node) { + var value = node.type === PASSWORD ? new Array(node.value.length + 1).join('\u2022') : node.value; + return value.length === 0 ? node.placeholder || '' : value; + }; + var CHECKBOX = 'checkbox'; + var RADIO = 'radio'; + var PASSWORD = 'password'; + var INPUT_COLOR = 0x2a2a2aff; + var InputElementContainer = /** @class */ (function (_super) { + __extends(InputElementContainer, _super); + function InputElementContainer(context, input) { + var _this = _super.call(this, context, input) || this; + _this.type = input.type.toLowerCase(); + _this.checked = input.checked; + _this.value = getInputValue(input); + if (_this.type === CHECKBOX || _this.type === RADIO) { + _this.styles.backgroundColor = 0xdededeff; + _this.styles.borderTopColor = + _this.styles.borderRightColor = + _this.styles.borderBottomColor = + _this.styles.borderLeftColor = + 0xa5a5a5ff; + _this.styles.borderTopWidth = + _this.styles.borderRightWidth = + _this.styles.borderBottomWidth = + _this.styles.borderLeftWidth = + 1; + _this.styles.borderTopStyle = + _this.styles.borderRightStyle = + _this.styles.borderBottomStyle = + _this.styles.borderLeftStyle = + 1 /* SOLID */; + _this.styles.backgroundClip = [0 /* BORDER_BOX */]; + _this.styles.backgroundOrigin = [0 /* BORDER_BOX */]; + _this.bounds = reformatInputBounds(_this.bounds); + } + switch (_this.type) { + case CHECKBOX: + _this.styles.borderTopRightRadius = + _this.styles.borderTopLeftRadius = + _this.styles.borderBottomRightRadius = + _this.styles.borderBottomLeftRadius = + CHECKBOX_BORDER_RADIUS; + break; + case RADIO: + _this.styles.borderTopRightRadius = + _this.styles.borderTopLeftRadius = + _this.styles.borderBottomRightRadius = + _this.styles.borderBottomLeftRadius = + RADIO_BORDER_RADIUS; + break; + } + return _this; + } + return InputElementContainer; + }(ElementContainer)); + + var SelectElementContainer = /** @class */ (function (_super) { + __extends(SelectElementContainer, _super); + function SelectElementContainer(context, element) { + var _this = _super.call(this, context, element) || this; + var option = element.options[element.selectedIndex || 0]; + _this.value = option ? option.text || '' : ''; + return _this; + } + return SelectElementContainer; + }(ElementContainer)); + + var TextareaElementContainer = /** @class */ (function (_super) { + __extends(TextareaElementContainer, _super); + function TextareaElementContainer(context, element) { + var _this = _super.call(this, context, element) || this; + _this.value = element.value; + return _this; + } + return TextareaElementContainer; + }(ElementContainer)); + + var IFrameElementContainer = /** @class */ (function (_super) { + __extends(IFrameElementContainer, _super); + function IFrameElementContainer(context, iframe) { + var _this = _super.call(this, context, iframe) || this; + _this.src = iframe.src; + _this.width = parseInt(iframe.width, 10) || 0; + _this.height = parseInt(iframe.height, 10) || 0; + _this.backgroundColor = _this.styles.backgroundColor; + try { + if (iframe.contentWindow && + iframe.contentWindow.document && + iframe.contentWindow.document.documentElement) { + _this.tree = parseTree(context, iframe.contentWindow.document.documentElement); + // http://www.w3.org/TR/css3-background/#special-backgrounds + var documentBackgroundColor = iframe.contentWindow.document.documentElement + ? parseColor(context, getComputedStyle(iframe.contentWindow.document.documentElement).backgroundColor) + : COLORS.TRANSPARENT; + var bodyBackgroundColor = iframe.contentWindow.document.body + ? parseColor(context, getComputedStyle(iframe.contentWindow.document.body).backgroundColor) + : COLORS.TRANSPARENT; + _this.backgroundColor = isTransparent(documentBackgroundColor) + ? isTransparent(bodyBackgroundColor) + ? _this.styles.backgroundColor + : bodyBackgroundColor + : documentBackgroundColor; + } + } + catch (e) { } + return _this; + } + return IFrameElementContainer; + }(ElementContainer)); + + var LIST_OWNERS = ['OL', 'UL', 'MENU']; + var parseNodeTree = function (context, node, parent, root) { + for (var childNode = node.firstChild, nextNode = void 0; childNode; childNode = nextNode) { + nextNode = childNode.nextSibling; + if (isTextNode(childNode) && childNode.data.trim().length > 0) { + parent.textNodes.push(new TextContainer(context, childNode, parent.styles)); + } + else if (isElementNode(childNode)) { + if (isSlotElement(childNode) && childNode.assignedNodes) { + childNode.assignedNodes().forEach(function (childNode) { return parseNodeTree(context, childNode, parent, root); }); + } + else { + var container = createContainer(context, childNode); + if (container.styles.isVisible()) { + if (createsRealStackingContext(childNode, container, root)) { + container.flags |= 4 /* CREATES_REAL_STACKING_CONTEXT */; + } + else if (createsStackingContext(container.styles)) { + container.flags |= 2 /* CREATES_STACKING_CONTEXT */; + } + if (LIST_OWNERS.indexOf(childNode.tagName) !== -1) { + container.flags |= 8 /* IS_LIST_OWNER */; + } + parent.elements.push(container); + childNode.slot; + if (childNode.shadowRoot) { + parseNodeTree(context, childNode.shadowRoot, container, root); + } + else if (!isTextareaElement(childNode) && + !isSVGElement(childNode) && + !isSelectElement(childNode)) { + parseNodeTree(context, childNode, container, root); + } + } + } + } + } + }; + var createContainer = function (context, element) { + if (isImageElement(element)) { + return new ImageElementContainer(context, element); + } + if (isCanvasElement(element)) { + return new CanvasElementContainer(context, element); + } + if (isSVGElement(element)) { + return new SVGElementContainer(context, element); + } + if (isLIElement(element)) { + return new LIElementContainer(context, element); + } + if (isOLElement(element)) { + return new OLElementContainer(context, element); + } + if (isInputElement(element)) { + return new InputElementContainer(context, element); + } + if (isSelectElement(element)) { + return new SelectElementContainer(context, element); + } + if (isTextareaElement(element)) { + return new TextareaElementContainer(context, element); + } + if (isIFrameElement(element)) { + return new IFrameElementContainer(context, element); + } + return new ElementContainer(context, element); + }; + var parseTree = function (context, element) { + var container = createContainer(context, element); + container.flags |= 4 /* CREATES_REAL_STACKING_CONTEXT */; + parseNodeTree(context, element, container, container); + return container; + }; + var createsRealStackingContext = function (node, container, root) { + return (container.styles.isPositionedWithZIndex() || + container.styles.opacity < 1 || + container.styles.isTransformed() || + (isBodyElement(node) && root.styles.isTransparent())); + }; + var createsStackingContext = function (styles) { return styles.isPositioned() || styles.isFloating(); }; + var isTextNode = function (node) { return node.nodeType === Node.TEXT_NODE; }; + var isElementNode = function (node) { return node.nodeType === Node.ELEMENT_NODE; }; + var isHTMLElementNode = function (node) { + return isElementNode(node) && typeof node.style !== 'undefined' && !isSVGElementNode(node); + }; + var isSVGElementNode = function (element) { + return typeof element.className === 'object'; + }; + var isLIElement = function (node) { return node.tagName === 'LI'; }; + var isOLElement = function (node) { return node.tagName === 'OL'; }; + var isInputElement = function (node) { return node.tagName === 'INPUT'; }; + var isHTMLElement = function (node) { return node.tagName === 'HTML'; }; + var isSVGElement = function (node) { return node.tagName === 'svg'; }; + var isBodyElement = function (node) { return node.tagName === 'BODY'; }; + var isCanvasElement = function (node) { return node.tagName === 'CANVAS'; }; + var isVideoElement = function (node) { return node.tagName === 'VIDEO'; }; + var isImageElement = function (node) { return node.tagName === 'IMG'; }; + var isIFrameElement = function (node) { return node.tagName === 'IFRAME'; }; + var isStyleElement = function (node) { return node.tagName === 'STYLE'; }; + var isScriptElement = function (node) { return node.tagName === 'SCRIPT'; }; + var isTextareaElement = function (node) { return node.tagName === 'TEXTAREA'; }; + var isSelectElement = function (node) { return node.tagName === 'SELECT'; }; + var isSlotElement = function (node) { return node.tagName === 'SLOT'; }; + // https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name + var isCustomElement = function (node) { return node.tagName.indexOf('-') > 0; }; + + var CounterState = /** @class */ (function () { + function CounterState() { + this.counters = {}; + } + CounterState.prototype.getCounterValue = function (name) { + var counter = this.counters[name]; + if (counter && counter.length) { + return counter[counter.length - 1]; + } + return 1; + }; + CounterState.prototype.getCounterValues = function (name) { + var counter = this.counters[name]; + return counter ? counter : []; + }; + CounterState.prototype.pop = function (counters) { + var _this = this; + counters.forEach(function (counter) { return _this.counters[counter].pop(); }); + }; + CounterState.prototype.parse = function (style) { + var _this = this; + var counterIncrement = style.counterIncrement; + var counterReset = style.counterReset; + var canReset = true; + if (counterIncrement !== null) { + counterIncrement.forEach(function (entry) { + var counter = _this.counters[entry.counter]; + if (counter && entry.increment !== 0) { + canReset = false; + if (!counter.length) { + counter.push(1); + } + counter[Math.max(0, counter.length - 1)] += entry.increment; + } + }); + } + var counterNames = []; + if (canReset) { + counterReset.forEach(function (entry) { + var counter = _this.counters[entry.counter]; + counterNames.push(entry.counter); + if (!counter) { + counter = _this.counters[entry.counter] = []; + } + counter.push(entry.reset); + }); + } + return counterNames; + }; + return CounterState; + }()); + var ROMAN_UPPER = { + integers: [1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1], + values: ['M', 'CM', 'D', 'CD', 'C', 'XC', 'L', 'XL', 'X', 'IX', 'V', 'IV', 'I'] + }; + var ARMENIAN = { + integers: [ + 9000, 8000, 7000, 6000, 5000, 4000, 3000, 2000, 1000, 900, 800, 700, 600, 500, 400, 300, 200, 100, 90, 80, 70, + 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 + ], + values: [ + 'Ք', + 'Փ', + 'Ւ', + 'Ց', + 'Ր', + 'Տ', + 'Վ', + 'Ս', + 'Ռ', + 'Ջ', + 'Պ', + 'Չ', + 'Ո', + 'Շ', + 'Ն', + 'Յ', + 'Մ', + 'Ճ', + 'Ղ', + 'Ձ', + 'Հ', + 'Կ', + 'Ծ', + 'Խ', + 'Լ', + 'Ի', + 'Ժ', + 'Թ', + 'Ը', + 'Է', + 'Զ', + 'Ե', + 'Դ', + 'Գ', + 'Բ', + 'Ա' + ] + }; + var HEBREW = { + integers: [ + 10000, 9000, 8000, 7000, 6000, 5000, 4000, 3000, 2000, 1000, 400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, + 19, 18, 17, 16, 15, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 + ], + values: [ + 'י׳', + 'ט׳', + 'ח׳', + 'ז׳', + 'ו׳', + 'ה׳', + 'ד׳', + 'ג׳', + 'ב׳', + 'א׳', + 'ת', + 'ש', + 'ר', + 'ק', + 'צ', + 'פ', + 'ע', + 'ס', + 'נ', + 'מ', + 'ל', + 'כ', + 'יט', + 'יח', + 'יז', + 'טז', + 'טו', + 'י', + 'ט', + 'ח', + 'ז', + 'ו', + 'ה', + 'ד', + 'ג', + 'ב', + 'א' + ] + }; + var GEORGIAN = { + integers: [ + 10000, 9000, 8000, 7000, 6000, 5000, 4000, 3000, 2000, 1000, 900, 800, 700, 600, 500, 400, 300, 200, 100, 90, + 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 + ], + values: [ + 'ჵ', + 'ჰ', + 'ჯ', + 'ჴ', + 'ხ', + 'ჭ', + 'წ', + 'ძ', + 'ც', + 'ჩ', + 'შ', + 'ყ', + 'ღ', + 'ქ', + 'ფ', + 'ჳ', + 'ტ', + 'ს', + 'რ', + 'ჟ', + 'პ', + 'ო', + 'ჲ', + 'ნ', + 'მ', + 'ლ', + 'კ', + 'ი', + 'თ', + 'ჱ', + 'ზ', + 'ვ', + 'ე', + 'დ', + 'გ', + 'ბ', + 'ა' + ] + }; + var createAdditiveCounter = function (value, min, max, symbols, fallback, suffix) { + if (value < min || value > max) { + return createCounterText(value, fallback, suffix.length > 0); + } + return (symbols.integers.reduce(function (string, integer, index) { + while (value >= integer) { + value -= integer; + string += symbols.values[index]; + } + return string; + }, '') + suffix); + }; + var createCounterStyleWithSymbolResolver = function (value, codePointRangeLength, isNumeric, resolver) { + var string = ''; + do { + if (!isNumeric) { + value--; + } + string = resolver(value) + string; + value /= codePointRangeLength; + } while (value * codePointRangeLength >= codePointRangeLength); + return string; + }; + var createCounterStyleFromRange = function (value, codePointRangeStart, codePointRangeEnd, isNumeric, suffix) { + var codePointRangeLength = codePointRangeEnd - codePointRangeStart + 1; + return ((value < 0 ? '-' : '') + + (createCounterStyleWithSymbolResolver(Math.abs(value), codePointRangeLength, isNumeric, function (codePoint) { + return fromCodePoint$1(Math.floor(codePoint % codePointRangeLength) + codePointRangeStart); + }) + + suffix)); + }; + var createCounterStyleFromSymbols = function (value, symbols, suffix) { + if (suffix === void 0) { suffix = '. '; } + var codePointRangeLength = symbols.length; + return (createCounterStyleWithSymbolResolver(Math.abs(value), codePointRangeLength, false, function (codePoint) { return symbols[Math.floor(codePoint % codePointRangeLength)]; }) + suffix); + }; + var CJK_ZEROS = 1 << 0; + var CJK_TEN_COEFFICIENTS = 1 << 1; + var CJK_TEN_HIGH_COEFFICIENTS = 1 << 2; + var CJK_HUNDRED_COEFFICIENTS = 1 << 3; + var createCJKCounter = function (value, numbers, multipliers, negativeSign, suffix, flags) { + if (value < -9999 || value > 9999) { + return createCounterText(value, 4 /* CJK_DECIMAL */, suffix.length > 0); + } + var tmp = Math.abs(value); + var string = suffix; + if (tmp === 0) { + return numbers[0] + string; + } + for (var digit = 0; tmp > 0 && digit <= 4; digit++) { + var coefficient = tmp % 10; + if (coefficient === 0 && contains(flags, CJK_ZEROS) && string !== '') { + string = numbers[coefficient] + string; + } + else if (coefficient > 1 || + (coefficient === 1 && digit === 0) || + (coefficient === 1 && digit === 1 && contains(flags, CJK_TEN_COEFFICIENTS)) || + (coefficient === 1 && digit === 1 && contains(flags, CJK_TEN_HIGH_COEFFICIENTS) && value > 100) || + (coefficient === 1 && digit > 1 && contains(flags, CJK_HUNDRED_COEFFICIENTS))) { + string = numbers[coefficient] + (digit > 0 ? multipliers[digit - 1] : '') + string; + } + else if (coefficient === 1 && digit > 0) { + string = multipliers[digit - 1] + string; + } + tmp = Math.floor(tmp / 10); + } + return (value < 0 ? negativeSign : '') + string; + }; + var CHINESE_INFORMAL_MULTIPLIERS = '十百千萬'; + var CHINESE_FORMAL_MULTIPLIERS = '拾佰仟萬'; + var JAPANESE_NEGATIVE = 'マイナス'; + var KOREAN_NEGATIVE = '마이너스'; + var createCounterText = function (value, type, appendSuffix) { + var defaultSuffix = appendSuffix ? '. ' : ''; + var cjkSuffix = appendSuffix ? '、' : ''; + var koreanSuffix = appendSuffix ? ', ' : ''; + var spaceSuffix = appendSuffix ? ' ' : ''; + switch (type) { + case 0 /* DISC */: + return '•' + spaceSuffix; + case 1 /* CIRCLE */: + return '◦' + spaceSuffix; + case 2 /* SQUARE */: + return '◾' + spaceSuffix; + case 5 /* DECIMAL_LEADING_ZERO */: + var string = createCounterStyleFromRange(value, 48, 57, true, defaultSuffix); + return string.length < 4 ? "0" + string : string; + case 4 /* CJK_DECIMAL */: + return createCounterStyleFromSymbols(value, '〇一二三四五六七八九', cjkSuffix); + case 6 /* LOWER_ROMAN */: + return createAdditiveCounter(value, 1, 3999, ROMAN_UPPER, 3 /* DECIMAL */, defaultSuffix).toLowerCase(); + case 7 /* UPPER_ROMAN */: + return createAdditiveCounter(value, 1, 3999, ROMAN_UPPER, 3 /* DECIMAL */, defaultSuffix); + case 8 /* LOWER_GREEK */: + return createCounterStyleFromRange(value, 945, 969, false, defaultSuffix); + case 9 /* LOWER_ALPHA */: + return createCounterStyleFromRange(value, 97, 122, false, defaultSuffix); + case 10 /* UPPER_ALPHA */: + return createCounterStyleFromRange(value, 65, 90, false, defaultSuffix); + case 11 /* ARABIC_INDIC */: + return createCounterStyleFromRange(value, 1632, 1641, true, defaultSuffix); + case 12 /* ARMENIAN */: + case 49 /* UPPER_ARMENIAN */: + return createAdditiveCounter(value, 1, 9999, ARMENIAN, 3 /* DECIMAL */, defaultSuffix); + case 35 /* LOWER_ARMENIAN */: + return createAdditiveCounter(value, 1, 9999, ARMENIAN, 3 /* DECIMAL */, defaultSuffix).toLowerCase(); + case 13 /* BENGALI */: + return createCounterStyleFromRange(value, 2534, 2543, true, defaultSuffix); + case 14 /* CAMBODIAN */: + case 30 /* KHMER */: + return createCounterStyleFromRange(value, 6112, 6121, true, defaultSuffix); + case 15 /* CJK_EARTHLY_BRANCH */: + return createCounterStyleFromSymbols(value, '子丑寅卯辰巳午未申酉戌亥', cjkSuffix); + case 16 /* CJK_HEAVENLY_STEM */: + return createCounterStyleFromSymbols(value, '甲乙丙丁戊己庚辛壬癸', cjkSuffix); + case 17 /* CJK_IDEOGRAPHIC */: + case 48 /* TRAD_CHINESE_INFORMAL */: + return createCJKCounter(value, '零一二三四五六七八九', CHINESE_INFORMAL_MULTIPLIERS, '負', cjkSuffix, CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS); + case 47 /* TRAD_CHINESE_FORMAL */: + return createCJKCounter(value, '零壹貳參肆伍陸柒捌玖', CHINESE_FORMAL_MULTIPLIERS, '負', cjkSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS); + case 42 /* SIMP_CHINESE_INFORMAL */: + return createCJKCounter(value, '零一二三四五六七八九', CHINESE_INFORMAL_MULTIPLIERS, '负', cjkSuffix, CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS); + case 41 /* SIMP_CHINESE_FORMAL */: + return createCJKCounter(value, '零壹贰叁肆伍陆柒捌玖', CHINESE_FORMAL_MULTIPLIERS, '负', cjkSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS | CJK_HUNDRED_COEFFICIENTS); + case 26 /* JAPANESE_INFORMAL */: + return createCJKCounter(value, '〇一二三四五六七八九', '十百千万', JAPANESE_NEGATIVE, cjkSuffix, 0); + case 25 /* JAPANESE_FORMAL */: + return createCJKCounter(value, '零壱弐参四伍六七八九', '拾百千万', JAPANESE_NEGATIVE, cjkSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS); + case 31 /* KOREAN_HANGUL_FORMAL */: + return createCJKCounter(value, '영일이삼사오육칠팔구', '십백천만', KOREAN_NEGATIVE, koreanSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS); + case 33 /* KOREAN_HANJA_INFORMAL */: + return createCJKCounter(value, '零一二三四五六七八九', '十百千萬', KOREAN_NEGATIVE, koreanSuffix, 0); + case 32 /* KOREAN_HANJA_FORMAL */: + return createCJKCounter(value, '零壹貳參四五六七八九', '拾百千', KOREAN_NEGATIVE, koreanSuffix, CJK_ZEROS | CJK_TEN_COEFFICIENTS | CJK_TEN_HIGH_COEFFICIENTS); + case 18 /* DEVANAGARI */: + return createCounterStyleFromRange(value, 0x966, 0x96f, true, defaultSuffix); + case 20 /* GEORGIAN */: + return createAdditiveCounter(value, 1, 19999, GEORGIAN, 3 /* DECIMAL */, defaultSuffix); + case 21 /* GUJARATI */: + return createCounterStyleFromRange(value, 0xae6, 0xaef, true, defaultSuffix); + case 22 /* GURMUKHI */: + return createCounterStyleFromRange(value, 0xa66, 0xa6f, true, defaultSuffix); + case 22 /* HEBREW */: + return createAdditiveCounter(value, 1, 10999, HEBREW, 3 /* DECIMAL */, defaultSuffix); + case 23 /* HIRAGANA */: + return createCounterStyleFromSymbols(value, 'あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん'); + case 24 /* HIRAGANA_IROHA */: + return createCounterStyleFromSymbols(value, 'いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす'); + case 27 /* KANNADA */: + return createCounterStyleFromRange(value, 0xce6, 0xcef, true, defaultSuffix); + case 28 /* KATAKANA */: + return createCounterStyleFromSymbols(value, 'アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン', cjkSuffix); + case 29 /* KATAKANA_IROHA */: + return createCounterStyleFromSymbols(value, 'イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス', cjkSuffix); + case 34 /* LAO */: + return createCounterStyleFromRange(value, 0xed0, 0xed9, true, defaultSuffix); + case 37 /* MONGOLIAN */: + return createCounterStyleFromRange(value, 0x1810, 0x1819, true, defaultSuffix); + case 38 /* MYANMAR */: + return createCounterStyleFromRange(value, 0x1040, 0x1049, true, defaultSuffix); + case 39 /* ORIYA */: + return createCounterStyleFromRange(value, 0xb66, 0xb6f, true, defaultSuffix); + case 40 /* PERSIAN */: + return createCounterStyleFromRange(value, 0x6f0, 0x6f9, true, defaultSuffix); + case 43 /* TAMIL */: + return createCounterStyleFromRange(value, 0xbe6, 0xbef, true, defaultSuffix); + case 44 /* TELUGU */: + return createCounterStyleFromRange(value, 0xc66, 0xc6f, true, defaultSuffix); + case 45 /* THAI */: + return createCounterStyleFromRange(value, 0xe50, 0xe59, true, defaultSuffix); + case 46 /* TIBETAN */: + return createCounterStyleFromRange(value, 0xf20, 0xf29, true, defaultSuffix); + case 3 /* DECIMAL */: + default: + return createCounterStyleFromRange(value, 48, 57, true, defaultSuffix); + } + }; + + var IGNORE_ATTRIBUTE = 'data-html2canvas-ignore'; + var DocumentCloner = /** @class */ (function () { + function DocumentCloner(context, element, options) { + this.context = context; + this.options = options; + this.scrolledElements = []; + this.referenceElement = element; + this.counters = new CounterState(); + this.quoteDepth = 0; + if (!element.ownerDocument) { + throw new Error('Cloned element does not have an owner document'); + } + this.documentElement = this.cloneNode(element.ownerDocument.documentElement, false); + } + DocumentCloner.prototype.toIFrame = function (ownerDocument, windowSize) { + var _this = this; + var iframe = createIFrameContainer(ownerDocument, windowSize); + if (!iframe.contentWindow) { + return Promise.reject("Unable to find iframe window"); + } + var scrollX = ownerDocument.defaultView.pageXOffset; + var scrollY = ownerDocument.defaultView.pageYOffset; + var cloneWindow = iframe.contentWindow; + var documentClone = cloneWindow.document; + /* Chrome doesn't detect relative background-images assigned in inline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/02.svg new file mode 100644 index 0000000..51c5a6a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/02.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03.svg new file mode 100644 index 0000000..33c5192 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03_001.svg new file mode 100644 index 0000000..43aa9bf --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/03_001.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04.svg new file mode 100644 index 0000000..c6ceba1 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04_001.svg new file mode 100644 index 0000000..811b32e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/04_001.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05.svg new file mode 100644 index 0000000..c539be5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05_001.svg new file mode 100644 index 0000000..df61c3d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/05_001.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/06.svg new file mode 100644 index 0000000..c79ad3f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/06.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/07.svg new file mode 100644 index 0000000..e457cec --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/07.svg @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/08.svg new file mode 100644 index 0000000..df544b4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/08.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/09.svg new file mode 100644 index 0000000..d651c4c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/09.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/10.svg new file mode 100644 index 0000000..ebe1d99 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/10.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/11.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/11.svg new file mode 100644 index 0000000..84eb78a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/11.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12.svg new file mode 100644 index 0000000..b2b2430 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12_001.svg new file mode 100644 index 0000000..b39d040 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/12_001.svg @@ -0,0 +1,33 @@ + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13.svg new file mode 100644 index 0000000..113f019 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13_001.svg new file mode 100644 index 0000000..f74b015 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/13_001.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/14.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/14.svg new file mode 100644 index 0000000..7e957e1 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Airy/14.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01.svg new file mode 100644 index 0000000..aed679c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01_001.svg new file mode 100644 index 0000000..205d466 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/01_001.svg @@ -0,0 +1,9 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/02.svg new file mode 100644 index 0000000..c1eb92f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/03.svg new file mode 100644 index 0000000..30cbd26 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/03.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/04.svg new file mode 100644 index 0000000..abfce69 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/04.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/05.svg new file mode 100644 index 0000000..049633a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/05.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/06.svg new file mode 100644 index 0000000..30a5002 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/06.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/07.svg new file mode 100644 index 0000000..482f074 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/07.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/08.svg new file mode 100644 index 0000000..a171cd6 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/08.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/09.svg new file mode 100644 index 0000000..8eefa84 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/09.svg @@ -0,0 +1,6 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10.svg new file mode 100644 index 0000000..70536c5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10_001.svg new file mode 100644 index 0000000..ae81ee8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/10_001.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/11.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/11.svg new file mode 100644 index 0000000..e9637b9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/11.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/12.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/12.svg new file mode 100644 index 0000000..1a216ab --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blobs/12.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01.svg new file mode 100644 index 0000000..f7a2fae --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01_001.svg new file mode 100644 index 0000000..37aae25 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/01_001.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02.svg new file mode 100644 index 0000000..571f882 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02_001.svg new file mode 100644 index 0000000..a65bf8f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/02_001.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/03.svg new file mode 100644 index 0000000..cc344de --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/03.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/04.svg new file mode 100644 index 0000000..4c9b050 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Blocks/04.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/01.svg new file mode 100644 index 0000000..ad47805 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/01.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/02.svg new file mode 100644 index 0000000..a3f8ecd --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/02.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/03.svg new file mode 100644 index 0000000..c6dc7db --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/03.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/04.svg new file mode 100644 index 0000000..b132542 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/04.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05.svg new file mode 100644 index 0000000..4731a36 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05_001.svg new file mode 100644 index 0000000..b6ee8e8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/05_001.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06.svg new file mode 100644 index 0000000..4fd9551 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06_001.svg new file mode 100644 index 0000000..ed244e4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/06_001.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07.svg new file mode 100644 index 0000000..9e9646d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07_001.svg new file mode 100644 index 0000000..55fe9b5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/07_001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/08.svg new file mode 100644 index 0000000..c9cfc94 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/08.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/09.svg new file mode 100644 index 0000000..aa47271 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/09.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10.svg new file mode 100644 index 0000000..ee58cdc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10_001.svg new file mode 100644 index 0000000..710faec --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/10_001.svg @@ -0,0 +1,6 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11.svg new file mode 100644 index 0000000..e877082 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11_001.svg new file mode 100644 index 0000000..da0d726 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/11_001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12.svg new file mode 100644 index 0000000..330d52b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12_001.svg new file mode 100644 index 0000000..9ca9de9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Bold/12_001.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/01.svg new file mode 100644 index 0000000..bcd01da --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/01.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/02.svg new file mode 100644 index 0000000..a3a32f4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/02.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/03.svg new file mode 100644 index 0000000..fb4f716 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/03.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/04.svg new file mode 100644 index 0000000..85b5ae7 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/04.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/05.svg new file mode 100644 index 0000000..931b68e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/05.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/06.svg new file mode 100644 index 0000000..320f107 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/06.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/07.svg new file mode 100644 index 0000000..baea569 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/07.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/08.svg new file mode 100644 index 0000000..622f487 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/08.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/09.svg new file mode 100644 index 0000000..0c367d3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/09.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/10.svg new file mode 100644 index 0000000..a242764 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/10.svg @@ -0,0 +1,2007 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/11.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/11.svg new file mode 100644 index 0000000..3896e84 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/11.svg @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/12.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/12.svg new file mode 100644 index 0000000..b1b0c72 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/12.svg @@ -0,0 +1,489 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/13.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/13.svg new file mode 100644 index 0000000..60a443c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/13.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/14.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/14.svg new file mode 100644 index 0000000..cfa63f7 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Floats/14.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/01.svg new file mode 100644 index 0000000..4d308fe --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/01.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02.svg new file mode 100644 index 0000000..c0f2874 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02_001.svg new file mode 100644 index 0000000..cc529b9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/02_001.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/03.svg new file mode 100644 index 0000000..58ed043 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/03.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04.svg new file mode 100644 index 0000000..3c61514 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04_001.svg new file mode 100644 index 0000000..255480c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/04_001.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/05.svg new file mode 100644 index 0000000..bc444fd --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/05.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06.svg new file mode 100644 index 0000000..a3b22d7 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06_001.svg new file mode 100644 index 0000000..b8357b4 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/06_001.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07.svg new file mode 100644 index 0000000..65038fa --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_001.svg new file mode 100644 index 0000000..7f150a0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_001.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_002.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_002.svg new file mode 100644 index 0000000..4224e9b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/07_002.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/08.svg new file mode 100644 index 0000000..74d2842 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/08.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09.svg new file mode 100644 index 0000000..e8474d8 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09_001.svg new file mode 100644 index 0000000..0a61d30 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/09_001.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/10.svg new file mode 100644 index 0000000..59440bd --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/10.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11.svg new file mode 100644 index 0000000..501d212 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11_001.svg new file mode 100644 index 0000000..0f21a5f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/11_001.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/12.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/12.svg new file mode 100644 index 0000000..8195147 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/12.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/13.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/13.svg new file mode 100644 index 0000000..863b8bd --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/13.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14.svg new file mode 100644 index 0000000..74ac000 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14_001.svg new file mode 100644 index 0000000..df9cb1e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/14_001.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/15.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/15.svg new file mode 100644 index 0000000..a9e0b39 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/15.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/16.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/16.svg new file mode 100644 index 0000000..1d76157 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/16.svg @@ -0,0 +1,10 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/17.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/17.svg new file mode 100644 index 0000000..41c9777 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/17.svg @@ -0,0 +1,9 @@ + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/18.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/18.svg new file mode 100644 index 0000000..20992bc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Origins/18.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01.svg new file mode 100644 index 0000000..93dd50e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01_001.svg new file mode 100644 index 0000000..1fc3a7a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/01_001.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02.svg new file mode 100644 index 0000000..1e0d567 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02_001.svg new file mode 100644 index 0000000..252320e --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/02_001.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03.svg new file mode 100644 index 0000000..6dc48d9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03.svg @@ -0,0 +1,32 @@ + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03_001.svg new file mode 100644 index 0000000..07062b0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/03_001.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/04.svg new file mode 100644 index 0000000..6104a16 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/04.svg @@ -0,0 +1,26 @@ + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05.svg new file mode 100644 index 0000000..4090b1b --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05_001.svg new file mode 100644 index 0000000..1dcf31a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/05_001.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/06.svg new file mode 100644 index 0000000..89c9a28 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/06.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/07.svg new file mode 100644 index 0000000..6226f50 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/07.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08.svg new file mode 100644 index 0000000..f3ffe28 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08_001.svg new file mode 100644 index 0000000..0465dfb --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/08_001.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09.svg new file mode 100644 index 0000000..98d030d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09_001.svg new file mode 100644 index 0000000..9a63821 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/09_001.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/10.svg new file mode 100644 index 0000000..ce93c54 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Rainy/10.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01.svg new file mode 100644 index 0000000..27037a9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01_001.svg new file mode 100644 index 0000000..3b04961 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/01_001.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02.svg new file mode 100644 index 0000000..d137c8a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02_001.svg new file mode 100644 index 0000000..37204cc --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/02_001.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/03.svg new file mode 100644 index 0000000..59af6ef --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/03.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/04.svg new file mode 100644 index 0000000..6b34185 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/04.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/05.svg new file mode 100644 index 0000000..3574716 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/05.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06.svg new file mode 100644 index 0000000..da58b7c --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06_001.svg new file mode 100644 index 0000000..8a4482d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/06_001.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/07.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/07.svg new file mode 100644 index 0000000..0530d06 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/07.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/08.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/08.svg new file mode 100644 index 0000000..39eced0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/08.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/09.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/09.svg new file mode 100644 index 0000000..9a6ff36 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/09.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/10.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/10.svg new file mode 100644 index 0000000..27a596f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/10.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/11.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/11.svg new file mode 100644 index 0000000..e97b4e5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/11.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12.svg new file mode 100644 index 0000000..5e91135 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12.svg @@ -0,0 +1,10 @@ + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12_001.svg new file mode 100644 index 0000000..8ec71f5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/12_001.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13.svg new file mode 100644 index 0000000..d8c218f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13.svg @@ -0,0 +1,20 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13_001.svg new file mode 100644 index 0000000..8cef3d3 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/13_001.svg @@ -0,0 +1,20 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/14.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/14.svg new file mode 100644 index 0000000..805f576 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/14.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/15.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/15.svg new file mode 100644 index 0000000..eb2529d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/15.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/16.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/16.svg new file mode 100644 index 0000000..1523c1f --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/16.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/17.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/17.svg new file mode 100644 index 0000000..49977d5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/17.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/18.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/18.svg new file mode 100644 index 0000000..dbd5ac0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/18.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/19.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/19.svg new file mode 100644 index 0000000..c841ce7 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/19.svg @@ -0,0 +1,4 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/20.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/20.svg new file mode 100644 index 0000000..b1dcd63 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/20.svg @@ -0,0 +1,4 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/21.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/21.svg new file mode 100644 index 0000000..4c84882 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/21.svg @@ -0,0 +1,5 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/22.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/22.svg new file mode 100644 index 0000000..5162f82 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/22.svg @@ -0,0 +1,4 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/23.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/23.svg new file mode 100644 index 0000000..95a0b21 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/23.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/24.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/24.svg new file mode 100644 index 0000000..cc337ce --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/24.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/25.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/25.svg new file mode 100644 index 0000000..fcaa356 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/25.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/26.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/26.svg new file mode 100644 index 0000000..7d4bc83 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/26.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/27.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/27.svg new file mode 100644 index 0000000..a1e6a14 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/27.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/28.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/28.svg new file mode 100644 index 0000000..5d7f2c5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Wavy/28.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01.svg new file mode 100644 index 0000000..7d4a775 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01_001.svg new file mode 100644 index 0000000..3bd8eb0 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/01_001.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02.svg new file mode 100644 index 0000000..0c5c074 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02_001.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02_001.svg new file mode 100644 index 0000000..31d9338 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/02_001.svg @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/03.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/03.svg new file mode 100644 index 0000000..07d67ba --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/03.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/04.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/04.svg new file mode 100644 index 0000000..42f90ae --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/04.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/05.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/05.svg new file mode 100644 index 0000000..da0a2ff --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/05.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/06.svg b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/06.svg new file mode 100644 index 0000000..bb73075 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/Zigs/06.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/convert.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/convert.js new file mode 100644 index 0000000..7a556a5 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/shapes/convert.js @@ -0,0 +1,101 @@ +/* eslint-env node */ +/* +The following script can be used to convert SVGs exported from illustrator into +a format that's compatible with the shape system. It runs with nodejs. Some +manual conversion may be necessary. + +FIXME this script is out-dated. +*/ + +const fs = require('fs'); +const path = require('path'); + +const palette = { + '1': '#3AADAA', + '2': '#7C6576', + '3': '#F6F6F6', + '4': '#FFFFFF', + '5': '#383E45', +}; + +const positions = ['top', 'left', 'bottom', 'right', 'center', 'stretch']; + +const directories = fs.readdirSync(__dirname).filter(nodeName => { + return nodeName[0] !== '.' && fs.lstatSync(path.join(__dirname, nodeName)).isDirectory(); +}); +const files = directories.flatMap(dirName => { + return fs.readdirSync(path.join(__dirname, dirName)) + .filter(fileName => fileName.endsWith('.svg')) + .map(fileName => path.join(__dirname, dirName, fileName)); +}); + +const shapes = []; +files.filter(f => f.endsWith('svg')).forEach(filePath => { + const svg = String(fs.readFileSync(filePath)); + const fileName = filePath.match(/([^/]+)$/)[1]; + + const colors = svg.match(/#[0-9A-F]{3,}/gi); + const nonPaletteColors = colors && colors.filter(color => !Object.values(palette).includes(color.toUpperCase())); + const shape = { + svg, + name: fileName.split(/[.-]/)[0], + page: filePath.slice(__dirname.length + 1, -fileName.length - 1), + colors: Object.keys(palette).filter(num => new RegExp(palette[num], 'i').test(svg)), + position: positions.filter(pos => fileName.includes(pos)), + nonIsometric: fileName.includes('+'), + nonPaletteColors: nonPaletteColors && nonPaletteColors.length ? nonPaletteColors.join(' ') : null, + containsImage: svg.includes('`; + if (shape.position[0] === 'stretch') { + shape.position = ['center']; + shape.size = '100% 100%'; + } else { + shape.size = '100% auto'; + } + shape.scss = `'${encodeURIComponent(shape.page)}/${encodeURIComponent(shape.name)}': ('position': ${shape.position[0]}, 'size': ${shape.size}, 'colors': (${shape.colors.join(', ')})${shape.repeatX ? ", 'repeat-x': true" : ""}${shape.repeatY ? ", 'repeat-y': true" : ""})`; + shapes.push(shape); +}); +const xml = shapes.map(shape => shape.optionXML).join('\n'); +const scss = shapes.map(shape => shape.scss).join(',\n'); +const nonConformShapes = shapes.flatMap(shape => { + const violations = {}; + let invalid = false; + // Not sure if we want this check, edi still trying to see if she can do shadows without embedding PNGs + // if (shape.containsImage) { + // violations.containsImage = shape.containsImage; + // invalid = true; + // } + if (shape.nonIsometric) { + violations.nonIsometric = shape.nonIsometric; + invalid = true; + } + if (shape.nonPaletteColors) { + violations.nonPaletteColors = shape.nonPaletteColors; + invalid = true; + } + if (shape.position.length > 1 || shape.position.length == 0) { + violations.position = shape.position; + invalid = true; + } + if (!invalid) { + return [] + } + return [[shape, violations]]; +}); +console.log('The following shapes are not conform:', nonConformShapes); + +const convertDir = './.converted'; +fs.mkdirSync(convertDir); +const convertedPath = path.join(__dirname, convertDir); +fs.writeFileSync(path.join(convertedPath, 'options.xml'), xml); +fs.writeFileSync(path.join(convertedPath, 'variables.scss'), scss); +shapes.forEach(shape => { + const pageDir = path.join(convertedPath, shape.page); + if (!fs.existsSync(pageDir)) { + fs.mkdirSync(pageDir); + } + fs.writeFileSync(path.join(pageDir, shape.name + '.svg'), shape.svg); +}); diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.js new file mode 100644 index 0000000..58bf2b2 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.js @@ -0,0 +1,79 @@ +/** @odoo-module */ + +import { Attachment, FileSelector, IMAGE_MIMETYPES } from './file_selector'; + +export class DocumentAttachment extends Attachment {} +DocumentAttachment.template = 'web_editor.DocumentAttachment'; + +export class DocumentSelector extends FileSelector { + setup() { + super.setup(); + + this.uploadText = this.env._t("Upload a document"); + this.urlPlaceholder = "https://www.odoo.com/mydocument"; + this.addText = this.env._t("Add URL"); + this.searchPlaceholder = this.env._t("Search a document"); + this.allLoadedText = this.env._t("All documents have been loaded"); + } + + get attachmentsDomain() { + const domain = super.attachmentsDomain; + domain.push(['mimetype', 'not in', IMAGE_MIMETYPES]); + // The assets should not be part of the documents. + // All assets begin with '/web/assets/', see _get_asset_template_url(). + domain.unshift('&', '|', ['url', '=', null], '!', ['url', '=like', '/web/assets/%']); + return domain; + } + + async onClickDocument(document) { + this.selectAttachment(document); + await this.props.save(); + } + + async fetchAttachments(...args) { + const attachments = await super.fetchAttachments(...args); + + if (this.selectInitialMedia()) { + for (const attachment of attachments) { + if (`/web/content/${attachment.id}` === this.props.media.getAttribute('href').replace(/[?].*/, '')) { + this.selectAttachment(attachment); + } + } + } + return attachments; + } + + /** + * Utility method used by the MediaDialog component. + */ + static async createElements(selectedMedia, { orm }) { + return Promise.all(selectedMedia.map(async attachment => { + const linkEl = document.createElement('a'); + let href = `/web/content/${encodeURIComponent(attachment.id)}?unique=${encodeURIComponent(attachment.checksum)}&download=true`; + if (!attachment.public) { + let accessToken = attachment.access_token; + if (!accessToken) { + [accessToken] = await orm.call( + 'ir.attachment', + 'generate_access_token', + [attachment.id], + ); + } + href += `&access_token=${encodeURIComponent(accessToken)}`; + } + linkEl.href = href; + linkEl.title = attachment.name; + linkEl.dataset.mimetype = attachment.mimetype; + return linkEl; + })); + } +} +DocumentSelector.mediaSpecificClasses = ['o_image']; +DocumentSelector.mediaSpecificStyles = []; +DocumentSelector.mediaExtraClasses = []; +DocumentSelector.tagNames = ['A']; +DocumentSelector.attachmentsListTemplate = 'web_editor.DocumentsListTemplate'; +DocumentSelector.components = { + ...FileSelector.components, + DocumentAttachment, +}; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.xml new file mode 100644 index 0000000..4793085 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/document_selector.xml @@ -0,0 +1,30 @@ + + + +
+ + + + + +
+
+

No documents found.

+

You can upload documents with the button located in the top left of the screen.

+
+
+ + + +
+
+
+ diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.js new file mode 100644 index 0000000..97dfb0a --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.js @@ -0,0 +1,303 @@ +/** @odoo-module */ + +import { useService } from '@web/core/utils/hooks'; +import { ConfirmationDialog } from '@web/core/confirmation_dialog/confirmation_dialog'; +import { Dialog } from '@web/core/dialog/dialog'; +import { KeepLast } from "@web/core/utils/concurrency"; +import { useDebounced } from "@web/core/utils/timing"; +import { SearchMedia } from './search_media'; + +import { Component, xml, useState, useRef, onWillStart } from "@odoo/owl"; + +export const IMAGE_MIMETYPES = ['image/jpg', 'image/jpeg', 'image/jpe', 'image/png', 'image/svg+xml', 'image/gif']; +export const IMAGE_EXTENSIONS = ['.jpg', '.jpeg', '.jpe', '.png', '.svg', '.gif']; + +class RemoveButton extends Component { + setup() { + this.removeTitle = this.env._t("This file is attached to the current record."); + if (this.props.model === 'ir.ui.view') { + this.removeTitle = this.env._t("This file is a public view attachment."); + } + } + + remove(ev) { + ev.stopPropagation(); + this.props.remove(); + } +} +RemoveButton.template = xml``; + +export class AttachmentError extends Component { + setup() { + this.title = this.env._t("Alert"); + } +} +AttachmentError.components = { Dialog }; +AttachmentError.template = xml ` + +
+

The image could not be deleted because it is used in the + following pages or views:

+ +
+ + + +
`; + +export class Attachment extends Component { + setup() { + this.dialogs = useService('dialog'); + this.rpc = useService('rpc'); + } + + remove() { + this.dialogs.add(ConfirmationDialog, { + body: this.env._t("Are you sure you want to delete this file ?"), + confirm: async () => { + const prevented = await this.rpc('/web_editor/attachment/remove', { + ids: [this.props.id], + }); + if (!Object.keys(prevented).length) { + this.props.onRemoved(this.props.id); + } else { + this.dialogs.add(AttachmentError, { + views: prevented[this.props.id], + }); + } + }, + }); + } +} +Attachment.components = { + RemoveButton, +}; + +export class FileSelectorControlPanel extends Component { + setup() { + this.state = useState({ + showUrlInput: false, + urlInput: '', + isValidUrl: false, + isValidFileFormat: false + }); + + this.fileInput = useRef('file-input'); + } + + get showSearchServiceSelect() { + return this.props.searchService && this.props.needle; + } + + get enableUrlUploadClick() { + return !this.state.showUrlInput || (this.state.urlInput && this.state.isValidUrl && this.state.isValidFileFormat); + } + + async onUrlUploadClick() { + if (!this.state.showUrlInput) { + this.state.showUrlInput = true; + } else { + await this.props.uploadUrl(this.state.urlInput); + this.state.urlInput = ''; + } + } + + onUrlInput(ev) { + const { isValidUrl, isValidFileFormat } = this.props.validateUrl(ev.target.value); + this.state.isValidFileFormat = isValidFileFormat; + this.state.isValidUrl = isValidUrl; + } + + onClickUpload() { + this.fileInput.el.click(); + } + + async onChangeFileInput() { + const inputFiles = this.fileInput.el.files; + if (!inputFiles.length) { + return; + } + await this.props.uploadFiles(inputFiles); + const fileInputEl = this.fileInput.el; + if (fileInputEl) { + fileInputEl.value = ""; + } + } +} +FileSelectorControlPanel.template = 'web_editor.FileSelectorControlPanel'; +FileSelectorControlPanel.components = { + SearchMedia, +}; + +export class FileSelector extends Component { + setup() { + this.orm = useService('orm'); + this.uploadService = useService('upload'); + this.keepLast = new KeepLast(); + + this.loadMoreButtonRef = useRef('load-more-button'); + + this.state = useState({ + attachments: [], + canLoadMoreAttachments: true, + isFetchingAttachments: false, + needle: '', + }); + + this.NUMBER_OF_ATTACHMENTS_TO_DISPLAY = 30; + + onWillStart(async () => { + this.state.attachments = await this.fetchAttachments(this.NUMBER_OF_ATTACHMENTS_TO_DISPLAY, 0); + }); + + this.debouncedScroll = useDebounced(this.scrollToLoadMoreButton, 500); + } + + get canLoadMore() { + return this.state.canLoadMoreAttachments; + } + + get hasContent() { + return this.state.attachments.length; + } + + get isFetching() { + return this.state.isFetchingAttachments; + } + + get selectedAttachmentIds() { + return this.props.selectedMedia[this.props.id].filter(media => media.mediaType === 'attachment').map(({ id }) => id); + } + + get attachmentsDomain() { + const domain = [ + '&', + ['res_model', '=', this.props.resModel], + ['res_id', '=', this.props.resId || 0] + ]; + domain.unshift('|', ['public', '=', true]); + domain.push(['name', 'ilike', this.state.needle]); + return domain; + } + + validateUrl(url) { + const path = url.split('?')[0]; + const isValidUrl = /^.+\..+$/.test(path); // TODO improve + const isValidFileFormat = true; + return { isValidUrl, isValidFileFormat, path }; + } + + async fetchAttachments(limit, offset) { + this.state.isFetchingAttachments = true; + let attachments = []; + try { + attachments = await this.orm.call( + 'ir.attachment', + 'search_read', + [], + { + domain: this.attachmentsDomain, + fields: ['name', 'mimetype', 'description', 'checksum', 'url', 'type', 'res_id', 'res_model', 'public', 'access_token', 'image_src', 'image_width', 'image_height', 'original_id'], + order: 'id desc', + // Try to fetch first record of next page just to know whether there is a next page. + limit, + offset, + } + ); + attachments.forEach(attachment => attachment.mediaType = 'attachment'); + } catch (e) { + // Reading attachments as a portal user is not permitted and will raise + // an access error so we catch the error silently and don't return any + // attachment so he can still use the wizard and upload an attachment + if (e.exceptionName !== 'odoo.exceptions.AccessError') { + throw e; + } + } + this.state.canLoadMoreAttachments = attachments.length >= this.NUMBER_OF_ATTACHMENTS_TO_DISPLAY; + this.state.isFetchingAttachments = false; + return attachments; + } + + async handleLoadMore() { + await this.loadMore(); + this.debouncedScroll(); + } + + async loadMore() { + return this.keepLast.add(this.fetchAttachments(this.NUMBER_OF_ATTACHMENTS_TO_DISPLAY, this.state.attachments.length)).then((newAttachments) => { + // This is never reached if another search or loadMore occurred. + this.state.attachments.push(...newAttachments); + }); + } + + async handleSearch(needle) { + await this.search(needle); + this.debouncedScroll(); + } + + async search(needle) { + // Prepare in case loadMore results are obtained instead. + this.state.attachments = []; + // Fetch attachments relies on the state's needle. + this.state.needle = needle; + return this.keepLast.add(this.fetchAttachments(this.NUMBER_OF_ATTACHMENTS_TO_DISPLAY, 0)).then((attachments) => { + // This is never reached if a new search occurred. + this.state.attachments = attachments; + }); + } + + async uploadFiles(files) { + await this.uploadService.uploadFiles(files, { resModel: this.props.resModel, resId: this.props.resId }, attachment => this.onUploaded(attachment)); + } + + async uploadUrl(url) { + await this.uploadService.uploadUrl(url, { resModel: this.props.resModel, resId: this.props.resId }, attachment => this.onUploaded(attachment)); + } + + async onUploaded(attachment) { + this.state.attachments = [attachment, ...this.state.attachments.filter(attach => attach.id !== attachment.id)]; + this.selectAttachment(attachment); + if (!this.props.multiSelect) { + await this.props.save(); + } + if (this.props.onAttachmentChange) { + this.props.onAttachmentChange(attachment); + } + } + + onRemoved(attachmentId) { + this.state.attachments = this.state.attachments.filter(attachment => attachment.id !== attachmentId); + } + + selectAttachment(attachment) { + this.props.selectMedia({ ...attachment, mediaType: 'attachment' }); + } + + selectInitialMedia() { + return this.props.media + && this.constructor.tagNames.includes(this.props.media.tagName) + && !this.selectedAttachmentIds.length; + } + + /** + * This is used (debounced) to be called after loading an attachment. + * This way, the user can always see the "load more" button. + */ + scrollToLoadMoreButton() { + if (this.state.needle || this.state.attachments.length > this.NUMBER_OF_ATTACHMENTS_TO_DISPLAY) { + this.loadMoreButtonRef.el.scrollIntoView({ block: 'end', inline: 'nearest', behavior: 'smooth' }); + } + } +} +FileSelector.template = 'web_editor.FileSelector'; +FileSelector.components = { + FileSelectorControlPanel, +}; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.xml new file mode 100644 index 0000000..8db6d01 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/file_selector.xml @@ -0,0 +1,68 @@ + + + +
+ +
+
+ + +
+ +
+
+ + +
+ + + +
+
+ +
+ +
+
+
+ + +
+ + +
+ +
+ +
+
+
+
+
diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.js new file mode 100644 index 0000000..d56d033 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.js @@ -0,0 +1,80 @@ +/** @odoo-module */ + +import fonts from 'wysiwyg.fonts'; +import { SearchMedia } from './search_media'; + +import { Component, useState } from "@odoo/owl"; + +export class IconSelector extends Component { + setup() { + this.state = useState({ + fonts: this.props.fonts, + needle: '', + }); + + this.searchPlaceholder = this.env._t("Search a pictogram"); + } + + get selectedMediaIds() { + return this.props.selectedMedia[this.props.id].map(({ id }) => id); + } + + search(needle) { + this.state.needle = needle; + if (!this.state.needle) { + this.state.fonts = this.props.fonts; + } else { + this.state.fonts = this.props.fonts.map(font => { + const icons = font.icons.filter(icon => icon.alias.indexOf(this.state.needle) >= 0); + return {...font, icons}; + }); + } + } + + async onClickIcon(font, icon) { + this.props.selectMedia({ + ...icon, + fontBase: font.base, + // To check if the icon has changed, we only need to compare + // an alias of the icon with the class from the old media (some + // icons can have multiple classes e.g. "fa-gears" ~ "fa-cogs") + initialIconChanged: this.props.media + && !icon.names.some(name => this.props.media.classList.contains(name)), + }); + await this.props.save(); + } + + /** + * Utility methods, used by the MediaDialog component. + */ + static createElements(selectedMedia) { + return selectedMedia.map(icon => { + const iconEl = document.createElement('span'); + iconEl.classList.add(icon.fontBase, icon.names[0]); + return iconEl; + }); + } + static initFonts() { + fonts.computeFonts(); + const allFonts = fonts.fontIcons.map(({cssData, base}) => { + const uniqueIcons = Array.from(new Map(cssData.map(icon => { + const alias = icon.names.join(','); + const id = `${base}_${alias}`; + return [id, { ...icon, alias, id }]; + })).values()); + return { base, icons: uniqueIcons }; + }); + return allFonts; + } +} +IconSelector.mediaSpecificClasses = ['fa']; +IconSelector.mediaSpecificStyles = ['color', 'background-color']; +IconSelector.mediaExtraClasses = [ + 'rounded-circle', 'rounded', 'img-thumbnail', 'shadow', + /^text-\S+$/, /^bg-\S+$/, /^fa-\S+$/, +]; +IconSelector.tagNames = ['SPAN', 'I']; +IconSelector.template = 'web_editor.IconSelector'; +IconSelector.components = { + SearchMedia, +}; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.xml new file mode 100644 index 0000000..6d791bf --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/icon_selector.xml @@ -0,0 +1,27 @@ + + + +
+
+ +
+
+ +
+

No pictograms found.

+

Try searching with other keywords.

+
+ +
+
+
+
+
diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.js new file mode 100644 index 0000000..a41030d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.js @@ -0,0 +1,370 @@ +/** @odoo-module */ + +import { useService } from '@web/core/utils/hooks'; +import { getCSSVariableValue, DEFAULT_PALETTE } from 'web_editor.utils'; +import { Attachment, FileSelector, IMAGE_MIMETYPES, IMAGE_EXTENSIONS } from './file_selector'; +import { KeepLast } from "@web/core/utils/concurrency"; + +import { useRef, useState, useEffect } from "@odoo/owl"; + +export class AutoResizeImage extends Attachment { + setup() { + super.setup(); + + this.image = useRef('auto-resize-image'); + this.container = useRef('auto-resize-image-container'); + + this.state = useState({ + loaded: false, + }); + + useEffect(() => { + this.image.el.addEventListener('load', () => this.onImageLoaded()); + return this.image.el.removeEventListener('load', () => this.onImageLoaded()); + }, () => []); + } + + async onImageLoaded() { + if (!this.image.el) { + // Do not fail if already removed. + return; + } + if (this.props.onLoaded) { + await this.props.onLoaded(this.image.el); + if (!this.image.el) { + // If replaced by colored version, aspect ratio will be + // computed on it instead. + return; + } + } + const aspectRatio = this.image.el.offsetWidth / this.image.el.offsetHeight; + const width = aspectRatio * this.props.minRowHeight; + this.container.el.style.flexGrow = width; + this.container.el.style.flexBasis = `${width}px`; + this.state.loaded = true; + } +} +AutoResizeImage.template = 'web_editor.AutoResizeImage'; + +export class ImageSelector extends FileSelector { + setup() { + super.setup(); + + this.rpc = useService('rpc'); + this.keepLastLibraryMedia = new KeepLast(); + + this.state.libraryMedia = []; + this.state.libraryResults = null; + this.state.isFetchingLibrary = false; + this.state.searchService = 'all'; + this.state.showOptimized = false; + this.NUMBER_OF_MEDIA_TO_DISPLAY = 10; + + this.uploadText = this.env._t("Upload an image"); + this.urlPlaceholder = "https://www.odoo.com/logo.png"; + this.addText = this.env._t("Add URL"); + this.searchPlaceholder = this.env._t("Search an image"); + this.urlWarningTitle = this.env._t("Uploaded image's format is not supported. Try with: " + IMAGE_EXTENSIONS.join(', ')); + this.allLoadedText = this.env._t("All images have been loaded"); + this.showOptimizedOption = this.env.debug; + this.MIN_ROW_HEIGHT = 128; + + this.fileMimetypes = IMAGE_MIMETYPES.join(','); + } + + get canLoadMore() { + // The user can load more library media only when the filter is set. + if (this.state.searchService === 'media-library') { + return this.state.libraryResults && this.state.libraryMedia.length < this.state.libraryResults; + } + return super.canLoadMore; + } + + get hasContent() { + if (this.state.searchService === 'all') { + return super.hasContent || !!this.state.libraryMedia.length; + } else if (this.state.searchService === 'media-library') { + return !!this.state.libraryMedia.length; + } + return super.hasContent; + } + + get isFetching() { + return super.isFetching || this.state.isFetchingLibrary; + } + + get selectedMediaIds() { + return this.props.selectedMedia[this.props.id].filter(media => media.mediaType === 'libraryMedia').map(({ id }) => id); + } + + get attachmentsDomain() { + const domain = super.attachmentsDomain; + domain.push(['mimetype', 'in', IMAGE_MIMETYPES]); + if (!this.props.useMediaLibrary) { + domain.push('|', ['url', '=', false], '!', ['url', '=ilike', '/web_editor/shape/%']); + } + domain.push('!', ['name', '=like', '%.crop']); + domain.push('|', ['type', '=', 'binary'], '!', ['url', '=like', '/%/static/%']); + + // Optimized images (meaning they are related to an `original_id`) can + // only be shown in debug mode as the toggler to make those images + // appear is hidden when not in debug mode. + // There is thus no point to fetch those optimized images outside debug + // mode. Worst, it leads to bugs: it might fetch only optimized images + // when clicking on "load more" which will look like it's bugged as no + // images will appear on screen (they all will be hidden). + if (!this.env.debug) { + const subDomain = [false]; + + // Particular exception: if the edited image is an optimized + // image, we need to fetch it too so it's displayed as the + // selected image when opening the media dialog. + // We might get a few more optimized image than necessary if the + // original image has multiple optimized images but it's not a + // big deal. + const originalId = this.props.media && this.props.media.dataset.originalId; + if (originalId) { + subDomain.push(originalId); + } + + domain.push(['original_id', 'in', subDomain]); + } + + return domain; + } + + async uploadFiles(files) { + await this.uploadService.uploadFiles(files, { resModel: this.props.resModel, resId: this.props.resId, isImage: true }, (attachment) => this.onUploaded(attachment)); + } + + validateUrl(...args) { + const { isValidUrl, path } = super.validateUrl(...args); + const isValidFileFormat = IMAGE_EXTENSIONS.some(format => path.endsWith(format)); + return { isValidFileFormat, isValidUrl }; + } + + isInitialMedia(attachment) { + if (this.props.media.dataset.originalSrc) { + return this.props.media.dataset.originalSrc === attachment.image_src; + } + return this.props.media.getAttribute('src') === attachment.image_src; + } + + async fetchAttachments(limit, offset) { + const attachments = await super.fetchAttachments(limit, offset); + // Color-substitution for dynamic SVG attachment + const primaryColors = {}; + for (let color = 1; color <= 5; color++) { + primaryColors[color] = getCSSVariableValue('o-color-' + color); + } + return attachments.map(attachment => { + if (attachment.image_src.startsWith('/')) { + const newURL = new URL(attachment.image_src, window.location.origin); + // Set the main colors of dynamic SVGs to o-color-1~5 + if (attachment.image_src.startsWith('/web_editor/shape/')) { + newURL.searchParams.forEach((value, key) => { + const match = key.match(/^c([1-5])$/); + if (match) { + newURL.searchParams.set(key, primaryColors[match[1]]); + } + }); + } else { + // Set height so that db images load faster + newURL.searchParams.set('height', 2 * this.MIN_ROW_HEIGHT); + } + attachment.thumbnail_src = newURL.pathname + newURL.search; + } + if (this.selectInitialMedia() && this.isInitialMedia(attachment)) { + this.selectAttachment(attachment); + } + return attachment; + }); + } + + async fetchLibraryMedia(offset) { + if (!this.state.needle) { + return { media: [], results: null }; + } + + this.state.isFetchingLibrary = true; + try { + const response = await this.rpc( + '/web_editor/media_library_search', + { + 'query': this.state.needle, + 'offset': offset, + }, + { + silent: true, + } + ); + this.state.isFetchingLibrary = false; + const media = (response.media || []).slice(0, this.NUMBER_OF_MEDIA_TO_DISPLAY); + media.forEach(record => record.mediaType = 'libraryMedia'); + return { media, results: response.results }; + } catch { + // Either API endpoint doesn't exist or is misconfigured. + console.error(`Couldn't reach API endpoint.`); + this.state.isFetchingLibrary = false; + return { media: [], results: null }; + } + } + + async loadMore(...args) { + await super.loadMore(...args); + if (!this.props.useMediaLibrary + // The user can load more library media only when the filter is set. + || this.state.searchService !== 'media-library' + ) { + return; + } + return this.keepLastLibraryMedia.add(this.fetchLibraryMedia(this.state.libraryMedia.length)).then(({ media }) => { + // This is never reached if another search or loadMore occurred. + this.state.libraryMedia.push(...media); + }); + } + + async search(...args) { + await super.search(...args); + if (!this.props.useMediaLibrary) { + return; + } + if (!this.state.needle) { + this.state.searchService = 'all'; + } + this.state.libraryMedia = []; + this.state.libraryResults = 0; + return this.keepLastLibraryMedia.add(this.fetchLibraryMedia(0)).then(({ media, results }) => { + // This is never reached if a new search occurred. + this.state.libraryMedia = media; + this.state.libraryResults = results; + }); + } + + async onClickAttachment(attachment) { + this.selectAttachment(attachment); + if (!this.props.multiSelect) { + await this.props.save(); + } + } + + async onClickMedia(media) { + this.props.selectMedia({ ...media, mediaType: 'libraryMedia' }); + if (!this.props.multiSelect) { + await this.props.save(); + } + } + + /** + * Utility method used by the MediaDialog component. + */ + static async createElements(selectedMedia, { orm, rpc }) { + // Create all media-library attachments. + const toSave = Object.fromEntries(selectedMedia.filter(media => media.mediaType === 'libraryMedia').map(media => [ + media.id, { + query: media.query || '', + is_dynamic_svg: !!media.isDynamicSVG, + dynamic_colors: media.dynamicColors, + } + ])); + let savedMedia = []; + if (Object.keys(toSave).length !== 0) { + savedMedia = await rpc('/web_editor/save_library_media', { media: toSave }); + } + const selected = selectedMedia.filter(media => media.mediaType === 'attachment').concat(savedMedia).map(attachment => { + // Color-customize dynamic SVGs with the theme colors + if (attachment.image_src && attachment.image_src.startsWith('/web_editor/shape/')) { + const colorCustomizedURL = new URL(attachment.image_src, window.location.origin); + colorCustomizedURL.searchParams.forEach((value, key) => { + const match = key.match(/^c([1-5])$/); + if (match) { + colorCustomizedURL.searchParams.set(key, getCSSVariableValue(`o-color-${match[1]}`)); + } + }); + attachment.image_src = colorCustomizedURL.pathname + colorCustomizedURL.search; + } + return attachment; + }); + return Promise.all(selected.map(async (attachment) => { + const imageEl = document.createElement('img'); + let src = attachment.image_src; + if (!attachment.public && !attachment.url) { + let accessToken = attachment.access_token; + if (!accessToken) { + [accessToken] = await orm.call( + 'ir.attachment', + 'generate_access_token', + [attachment.id], + ); + } + src += `?access_token=${encodeURIComponent(accessToken)}`; + } + imageEl.src = src; + imageEl.alt = attachment.description || ''; + return imageEl; + })); + } + + async onImageLoaded(imgEl, attachment) { + this.debouncedScroll(); + if (attachment.mediaType === 'libraryMedia' && !imgEl.src.startsWith('blob')) { + // This call applies the theme's color palette to the + // loaded illustration. Upon replacement of the image, + // `onImageLoad` is called again, but the replacement image + // has an URL that starts with 'blob'. The condition above + // uses this to avoid an infinite loop. + await this.onLibraryImageLoaded(imgEl, attachment); + } + } + + /** + * This converts the colors of an svg coming from the media library to + * the palette's ones, and make them dynamic. + * + * @param {HTMLElement} imgEl + * @param {Object} media + * @returns + */ + async onLibraryImageLoaded(imgEl, media) { + const mediaUrl = imgEl.src; + try { + const response = await fetch(mediaUrl); + const contentType = response.headers.get("content-type"); + if (contentType && contentType.startsWith("image/svg+xml")) { + let svg = await response.text(); + const dynamicColors = {}; + const combinedColorsRegex = new RegExp(Object.values(DEFAULT_PALETTE).join('|'), 'gi'); + svg = svg.replace(combinedColorsRegex, match => { + const colorId = Object.keys(DEFAULT_PALETTE).find(key => DEFAULT_PALETTE[key] === match.toUpperCase()); + const colorKey = 'c' + colorId + dynamicColors[colorKey] = getCSSVariableValue('o-color-' + colorId); + return dynamicColors[colorKey]; + }); + const fileName = mediaUrl.split('/').pop(); + const file = new File([svg], fileName, { + type: "image/svg+xml", + }); + imgEl.src = URL.createObjectURL(file); + if (Object.keys(dynamicColors).length) { + media.isDynamicSVG = true; + media.dynamicColors = dynamicColors; + } + } + } catch (_e) { + console.error('CORS is misconfigured on the API server, image will be treated as non-dynamic.'); + } + } +} + +ImageSelector.mediaSpecificClasses = ['img', 'img-fluid', 'o_we_custom_image']; +ImageSelector.mediaSpecificStyles = []; +ImageSelector.mediaExtraClasses = [ + 'rounded-circle', 'rounded', 'img-thumbnail', 'shadow', + 'w-25', 'w-50', 'w-75', 'w-100', +]; +ImageSelector.tagNames = ['IMG']; +ImageSelector.attachmentsListTemplate = 'web_editor.ImagesListTemplate'; +ImageSelector.components = { + ...FileSelector.components, + AutoResizeImage, +}; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.xml new file mode 100644 index 0000000..3685151 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/image_selector.xml @@ -0,0 +1,64 @@ + + + + + + + +
+ +
+

No images found.

+

You can upload images with the button located in the top left of the screen.

+
+
+

Get the perfect image by searching in our library of copyright free photos and illustrations.

+
+
+ + + + + + + + + + + + + +
+ + +
+
+ diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.js new file mode 100644 index 0000000..981ff93 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.js @@ -0,0 +1,272 @@ +/** @odoo-module **/ + +import {_lt} from "@web/core/l10n/translation"; +import { useService } from '@web/core/utils/hooks'; +import { Mutex } from "@web/core/utils/concurrency"; +import { useWowlService } from '@web/legacy/utils'; +import { Dialog } from '@web/core/dialog/dialog'; +import { Notebook } from '@web/core/notebook/notebook'; +import { ImageSelector } from './image_selector'; +import { DocumentSelector } from './document_selector'; +import { IconSelector } from './icon_selector'; +import { VideoSelector } from './video_selector'; + +import { Component, useState, onRendered, xml } from "@odoo/owl"; + +export const TABS = { + IMAGES: { + id: 'IMAGES', + title: _lt("Images"), + Component: ImageSelector, + }, + DOCUMENTS: { + id: 'DOCUMENTS', + title: _lt("Documents"), + Component: DocumentSelector, + }, + ICONS: { + id: 'ICONS', + title: _lt("Icons"), + Component: IconSelector, + }, + VIDEOS: { + id: 'VIDEOS', + title: _lt("Videos"), + Component: VideoSelector, + }, +}; + +export class MediaDialog extends Component { + setup() { + this.size = 'xl'; + this.contentClass = 'o_select_media_dialog'; + this.title = this.env._t("Select a media"); + + this.rpc = useService('rpc'); + this.orm = useService('orm'); + this.notificationService = useService('notification'); + this.mutex = new Mutex(); + + this.tabs = []; + this.selectedMedia = useState({}); + + this.initialIconClasses = []; + + this.addTabs(); + this.errorMessages = {}; + + this.state = useState({ + activeTab: this.initialActiveTab, + }); + } + + get initialActiveTab() { + if (this.props.activeTab) { + return this.props.activeTab; + } + if (this.props.media) { + const correspondingTab = Object.keys(TABS).find(id => TABS[id].Component.tagNames.includes(this.props.media.tagName)); + if (correspondingTab) { + return correspondingTab; + } + } + return this.tabs[0].id; + } + + addTab(tab, additionalProps = {}) { + this.selectedMedia[tab.id] = []; + this.tabs.push({ + ...tab, + props: { + ...tab.props, + ...additionalProps, + id: tab.id, + resModel: this.props.resModel, + resId: this.props.resId, + media: this.props.media, + multiImages: this.props.multiImages, + selectedMedia: this.selectedMedia, + selectMedia: (...args) => this.selectMedia(...args, tab.id, additionalProps.multiSelect), + save: this.save.bind(this), + onAttachmentChange: this.props.onAttachmentChange, + errorMessages: (errorMessage) => this.errorMessages[tab.id] = errorMessage, + }, + }); + } + + addTabs() { + const onlyImages = this.props.onlyImages || this.props.multiImages || (this.props.media && this.props.media.parentElement && (this.props.media.parentElement.dataset.oeField === 'image' || this.props.media.parentElement.dataset.oeType === 'image')); + const noDocuments = onlyImages || this.props.noDocuments; + const noIcons = onlyImages || this.props.noIcons; + const noVideos = onlyImages || this.props.noVideos; + + if (!this.props.noImages) { + this.addTab(TABS.IMAGES, { + useMediaLibrary: this.props.useMediaLibrary, + multiSelect: this.props.multiImages, + }); + } + if (!noDocuments) { + this.addTab(TABS.DOCUMENTS); + } + if (!noIcons) { + const fonts = TABS.ICONS.Component.initFonts(); + this.addTab(TABS.ICONS, { + fonts, + }); + + if (this.props.media && TABS.ICONS.Component.tagNames.includes(this.props.media.tagName)) { + const classes = this.props.media.className.split(/\s+/); + const mediaFont = fonts.find(font => classes.includes(font.base)); + if (mediaFont) { + const selectedIcon = mediaFont.icons.find(icon => icon.names.some(name => classes.includes(name))); + if (selectedIcon) { + this.initialIconClasses.push(...selectedIcon.names); + this.selectMedia(selectedIcon, TABS.ICONS.id); + } + } + } + } + if (!noVideos) { + this.addTab(TABS.VIDEOS, { + vimeoPreviewIds: this.props.vimeoPreviewIds, + isForBgVideo: this.props.isForBgVideo, + }); + } + } + + selectMedia(media, tabId, multiSelect) { + if (multiSelect) { + const isMediaSelected = this.selectedMedia[tabId].map(({ id }) => id).includes(media.id); + if (!isMediaSelected) { + this.selectedMedia[tabId].push(media); + } else { + this.selectedMedia[tabId] = this.selectedMedia[tabId].filter(m => m.id !== media.id); + } + } else { + this.selectedMedia[tabId] = [media]; + } + } + + async save() { + if (this.errorMessages[this.state.activeTab]) { + this.notificationService.add(this.errorMessages[this.state.activeTab], { + type: 'danger', + }); + return; + } + const selectedMedia = this.selectedMedia[this.state.activeTab]; + // TODO In master: clean the save method so it performs the specific + // adaptation before saving from the active media selector and find a + // way to simply close the dialog if the media element remains the same. + const saveSelectedMedia = selectedMedia.length + && (this.state.activeTab !== TABS.ICONS.id || selectedMedia[0].initialIconChanged || !this.props.media); + if (saveSelectedMedia) { + // Calling a mutex to make sure RPC calls inside `createElements` + // are properly awaited (e.g. avoid creating multiple attachments + // when clicking multiple times on the same media). As + // `createElements` is static, the mutex has to be set on the media + // dialog itself to be destroyed with its instance. + const elements = await this.mutex.exec(async() => + await TABS[this.state.activeTab].Component.createElements(selectedMedia, { rpc: this.rpc, orm: this.orm }) + ); + elements.forEach(element => { + if (this.props.media) { + element.classList.add(...this.props.media.classList); + const style = this.props.media.getAttribute('style'); + if (style) { + element.setAttribute('style', style); + } + if (this.state.activeTab === TABS.IMAGES.id) { + if (this.props.media.dataset.shape) { + element.dataset.shape = this.props.media.dataset.shape; + } + if (this.props.media.dataset.shapeColors) { + element.dataset.shapeColors = this.props.media.dataset.shapeColors; + } + } else if ([TABS.VIDEOS.id, TABS.DOCUMENTS.id].includes(this.state.activeTab)) { + const parentEl = this.props.media.parentElement; + if ( + parentEl && + parentEl.tagName === "A" && + parentEl.children.length === 1 && + this.props.media.tagName === "IMG" + ) { + // If an image is wrapped in an
tag, we remove the link when replacing it with a video or document + parentEl.replaceWith(parentEl.firstElementChild); + } + } + } + for (const otherTab of Object.keys(TABS).filter(key => key !== this.state.activeTab)) { + for (const property of TABS[otherTab].Component.mediaSpecificStyles) { + element.style.removeProperty(property); + } + element.classList.remove(...TABS[otherTab].Component.mediaSpecificClasses); + const extraClassesToRemove = []; + for (const name of TABS[otherTab].Component.mediaExtraClasses) { + if (typeof(name) === 'string') { + extraClassesToRemove.push(name); + } else { // Regex + for (const className of element.classList) { + if (className.match(name)) { + extraClassesToRemove.push(className); + } + } + } + } + // Remove classes that do not also exist in the target type. + element.classList.remove(...extraClassesToRemove.filter(candidateName => { + for (const name of TABS[this.state.activeTab].Component.mediaExtraClasses) { + if (typeof(name) === 'string') { + if (candidateName === name) { + return false; + } + } else { // Regex + for (const className of element.classList) { + if (className.match(candidateName)) { + return false; + } + } + } + } + return true; + })); + } + element.classList.remove(...this.initialIconClasses); + element.classList.remove('o_modified_image_to_save'); + element.classList.remove('oe_edited_link'); + element.classList.add(...TABS[this.state.activeTab].Component.mediaSpecificClasses); + }); + if (this.props.multiImages) { + await this.props.save(elements); + } else { + await this.props.save(elements[0]); + } + } + this.props.close(); + } + + onTabChange(tab) { + this.state.activeTab = tab; + } +} +MediaDialog.template = 'web_editor.MediaDialog'; +MediaDialog.defaultProps = { + useMediaLibrary: true, +}; +MediaDialog.components = { + ...Object.keys(TABS).map(key => TABS[key].Component), + Dialog, + Notebook, +}; + +export class MediaDialogWrapper extends Component { + setup() { + this.dialogs = useWowlService('dialog'); + + onRendered(() => { + this.dialogs.add(MediaDialog, this.props); + }); + } +} +MediaDialogWrapper.template = xml``; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.scss b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.scss new file mode 100644 index 0000000..6c071a9 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.scss @@ -0,0 +1,52 @@ +.modal:not(.o_legacy_dialog) .o_select_media_dialog { + $min-row-height: 128; + + .o_we_existing_attachments { + min-height: $min-row-height + px; + + .o_we_attachment_placeholder { + flex-grow: $min-row-height; + flex-basis: $min-row-height + px; + } + + .o_existing_attachment_cell.o_we_image { + transition: opacity 0.5s ease 0.5s; + + .o_we_media_dialog_img_wrapper { + @extend %o-preview-alpha-background; + } + } + + .o_existing_attachment_remove { + border-radius: 0 0 0 $o-we-item-border-radius; + + &:hover { + color: $o-we-color-danger; + } + } + } + + .o_we_attachment_selected { + @include o-we-active-wrapper($top: 5px, $left: 5px); + } + + .o_we_load_more { + scroll-margin: $modal-inner-padding; + } + + .font-icons-icons > span { + width: 50px; + } + + .o_video_dialog_form textarea { + min-height: 95px; + } + + .o_video_preview { + @include o-we-preview-box(); + + .media_iframe_video { + width: 100%; + } + } +} diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.xml new file mode 100644 index 0000000..6d58a44 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/media_dialog.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/search_media.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/search_media.js new file mode 100644 index 0000000..6674baa --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/search_media.js @@ -0,0 +1,31 @@ +/** @odoo-module **/ + +import { useDebounced } from '@web/core/utils/timing'; +import { useAutofocus } from '@web/core/utils/hooks'; + +import { Component, xml, useEffect, useState } from "@odoo/owl"; + +export class SearchMedia extends Component { + setup() { + useAutofocus(); + this.debouncedSearch = useDebounced(this.props.search, 1000); + + this.state = useState({ + input: this.props.needle || '', + }); + + useEffect((input) => { + // Do not trigger a search on the initial render. + if (this.hasRendered) { + this.debouncedSearch(input); + } else { + this.hasRendered = true; + } + }, () => [this.state.input]); + } +} +SearchMedia.template = xml` +
+ + +
`; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.js b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.js new file mode 100644 index 0000000..8ec8c7d --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.js @@ -0,0 +1,213 @@ +/** @odoo-module */ + +import { useService } from '@web/core/utils/hooks'; +import { throttle } from '@web/core/utils/timing'; +import { qweb } from 'web.core'; + +import { Component, useState, useRef, onMounted, onWillStart } from "@odoo/owl"; + +class VideoOption extends Component {} +VideoOption.template = 'web_editor.VideoOption'; + +export class VideoSelector extends Component { + setup() { + this.rpc = useService('rpc'); + this.http = useService('http'); + + this.PLATFORMS = { + youtube: 'youtube', + dailymotion: 'dailymotion', + vimeo: 'vimeo', + youku: 'youku', + }; + + this.OPTIONS = { + autoplay: { + label: this.env._t("Autoplay"), + description: this.env._t("Videos are muted when autoplay is enabled"), + platforms: [this.PLATFORMS.youtube, this.PLATFORMS.dailymotion, this.PLATFORMS.vimeo], + urlParameter: 'autoplay=1', + }, + loop: { + label: this.env._t("Loop"), + platforms: [this.PLATFORMS.youtube, this.PLATFORMS.vimeo], + urlParameter: 'loop=1', + }, + hide_controls: { + label: this.env._t("Hide player controls"), + platforms: [this.PLATFORMS.youtube, this.PLATFORMS.dailymotion, this.PLATFORMS.vimeo], + urlParameter: 'controls=0', + }, + hide_fullscreen: { + label: this.env._t("Hide fullscreen button"), + platforms: [this.PLATFORMS.youtube], + urlParameter: 'fs=0', + isHidden: () => this.state.options.filter(option => option.id === 'hide_controls')[0].value, + }, + hide_dm_logo: { + label: this.env._t("Hide Dailymotion logo"), + platforms: [this.PLATFORMS.dailymotion], + urlParameter: 'ui-logo=0', + }, + hide_dm_share: { + label: this.env._t("Hide sharing button"), + platforms: [this.PLATFORMS.dailymotion], + urlParameter: 'sharing-enable=0', + }, + }; + + this.state = useState({ + options: [], + src: '', + urlInput: '', + platform: null, + vimeoPreviews: [], + errorMessage: '', + }); + this.urlInputRef = useRef('url-input'); + + onWillStart(async () => { + if (this.props.media) { + const src = this.props.media.dataset.oeExpression || this.props.media.dataset.src || (this.props.media.tagName === 'IFRAME' && this.props.media.getAttribute('src')) || ''; + if (src) { + this.state.urlInput = src; + await this.updateVideo(); + + this.state.options = this.state.options.map((option) => { + const { urlParameter } = this.OPTIONS[option.id]; + return { ...option, value: src.indexOf(urlParameter) >= 0 }; + }); + } + } + }); + + onMounted(async () => { + await Promise.all(this.props.vimeoPreviewIds.map(async (videoId) => { + try { + const { thumbnail_url: thumbnailSrc } = await this.http.get(`https://vimeo.com/api/oembed.json?url=http%3A//vimeo.com/${encodeURIComponent(videoId)}`); + this.state.vimeoPreviews.push({ + id: videoId, + thumbnailSrc, + src: `https://player.vimeo.com/video/${encodeURIComponent(videoId)}` + }); + } catch (err) { + console.warn(`Could not get video #${videoId} from vimeo: ${err}`); + } + })); + }); + + this.onChangeUrl = throttle((ev) => this.updateVideo(ev.target.value), 500); + } + + get shownOptions() { + if (this.props.isForBgVideo) { + return []; + } + return this.state.options.filter(option => !this.OPTIONS[option.id].isHidden || !this.OPTIONS[option.id].isHidden()); + } + + async onChangeOption(optionId) { + this.state.options = this.state.options.map(option => { + if (option.id === optionId) { + return { ...option, value: !option.value }; + } + return option; + }); + await this.updateVideo(); + } + + async onClickSuggestion(src) { + this.state.urlInput = src; + await this.updateVideo(); + } + + async updateVideo() { + if (!this.state.urlInput) { + this.state.src = ''; + this.state.urlInput = ''; + this.state.options = []; + this.state.platform = null; + this.state.errorMessage = ''; + return; + } + + // Detect if we have an embed code rather than an URL + const embedMatch = this.state.urlInput.match(/(src|href)=["']?([^"']+)?/); + if (embedMatch && embedMatch[2].length > 0 && embedMatch[2].indexOf('instagram')) { + embedMatch[1] = embedMatch[2]; // Instagram embed code is different + } + const url = embedMatch ? embedMatch[1] : this.state.urlInput; + + const options = {}; + if (this.props.isForBgVideo) { + Object.keys(this.OPTIONS).forEach(key => { + options[key] = true; + }); + } else { + for (const option of this.shownOptions) { + options[option.id] = option.value; + } + } + const { embed_url: src, platform } = await this._getVideoURLData(url, options); + + if (!src) { + this.state.errorMessage = this.env._t("The provided url is not valid"); + } else if (!platform) { + this.state.errorMessage = + this.env._t("The provided url does not reference any supported video"); + } else { + this.state.errorMessage = ''; + } + this.props.errorMessages(this.state.errorMessage); + + const newOptions = []; + if (platform && platform !== this.state.platform) { + Object.keys(this.OPTIONS).forEach(key => { + if (this.OPTIONS[key].platforms.includes(platform)) { + const { label, description } = this.OPTIONS[key]; + newOptions.push({ id: key, label, description }); + } + }); + } + + this.state.src = src; + this.props.selectMedia({ id: src, src }); + if (platform !== this.state.platform) { + this.state.platform = platform; + this.state.options = newOptions; + } + } + + /** + * Keep rpc call in distinct method make it patchable by test. + */ + async _getVideoURLData(url, options) { + return await this.rpc('/web_editor/video_url/data', { + video_url: url, + ...options, + }); + } + + /** + * Utility method, called by the MediaDialog component. + */ + static createElements(selectedMedia) { + return selectedMedia.map(video => { + const template = document.createElement('template'); + template.innerHTML = qweb.render('web_editor.videoWrapper', { src: video.src }); + return template.content.firstChild; + }); + } +} +VideoSelector.mediaSpecificClasses = ['media_iframe_video']; +VideoSelector.mediaSpecificStyles = []; +VideoSelector.mediaExtraClasses = []; +VideoSelector.tagNames = ['IFRAME', 'DIV']; +VideoSelector.template = 'web_editor.VideoSelector'; +VideoSelector.components = { + VideoOption, +}; +VideoSelector.defaultProps = { + vimeoPreviewIds: [], + isForBgVideo: false, +}; diff --git a/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.xml b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.xml new file mode 100644 index 0000000..ece7894 --- /dev/null +++ b/odoo-bringout-oca-ocb-web_editor/web_editor/static/src/components/media_dialog/video_selector.xml @@ -0,0 +1,61 @@ + + +
+
+
+ + + +
+ + + + +